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 7, 2023
1 parent 29464cd commit e13c5db
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/tools/misc/legdur/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib
, fetchCrate
, rustPlatform
}:

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

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

cargoSha256 = "sha256-JLiAwgghgaoINEo10My2Tc6vG9iaNL1mOe4fG/udcGw=";

meta = {
description = "keep your legacy durable, detect changes to your directories over time";
homepage = "https://git.sr.ht/~cyplo/legdur";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ _0x4A6F ];
platforms = lib.platforms.unix;
};
}
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 e13c5db

Please sign in to comment.