Skip to content

Commit

Permalink
dotter: init at 0.12.9
Browse files Browse the repository at this point in the history
  • Loading branch information
linsui committed Feb 22, 2022
1 parent a6e67d1 commit dd00116
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/tools/misc/dotter/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, rustPlatform, which }:

rustPlatform.buildRustPackage rec {
pname = "dotter";
version = "0.12.9";

src = fetchFromGitHub {
owner = "SuperCuber";
repo = "dotter";
rev = version;
sha256 = "0rxinrm110i5cbkl7c7vgk7dl0x79cg6g23bdjixsg7h0572c2gi";
};

cargoSha256 = "0fr2dvzbpwqvf98wwrxv76nwbrv4m9ppx7br4x78gm8dhf2nj4zx";

checkInputs = [ which ];

meta = with lib; {
description = "A dotfile manager and templater written in rust 🦀";
homepage = "https://github.com/SuperCuber/dotter";
license = licenses.unlicense;
maintainers = with maintainers; [ linsui ];
mainProgram = "dotter";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1752,6 +1752,8 @@ with pkgs;

doona = callPackage ../tools/security/doona { };

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

droidcam = callPackage ../applications/video/droidcam { };

ecdsautils = callPackage ../tools/security/ecdsautils { };
Expand Down

0 comments on commit dd00116

Please sign in to comment.