Skip to content

Commit

Permalink
legdur: init at 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4A6F committed Feb 16, 2023
1 parent 29464cd commit 243c421
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/tools/misc/legdur/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib
, fetchCrate
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
pname = "legdur";
version = "0.3.0";

src = fetchCrate {
inherit pname version;
hash = "sha256-IKwEL5TKDDMX5AunRZI04MNAuv/w1pD39in8+j41P4Q=";
};

cargoHash = "sha256-JLiAwgghgaoINEo10My2Tc6vG9iaNL1mOe4fG/udcGw=";

meta = with lib; {
description = "keep your legacy durable, detect changes to your directories over time";
longDescription = ''
A simple CLI program to compute hashes of large
sets of files in large directory structures and
compare them with a previous snapshot
'';
homepage = "https://hg.sr.ht/~cyplo/legdur";
license = licenses.agpl3Only;
maintainers = with maintainers; [ _0x4A6F ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1967,6 +1967,8 @@ with pkgs;

lefthook = callPackage ../applications/version-management/lefthook { };

legdur = callPackage ../tools/misc/legdur { };

legit = callPackage ../applications/version-management/legit { };

lucky-commit = callPackage ../applications/version-management/lucky-commit {
Expand Down

0 comments on commit 243c421

Please sign in to comment.