dotter: init at 0.12.9

This commit is contained in:
linsui 2022-02-22 22:46:05 +08:00
parent a6e67d13c4
commit dd00116269
2 changed files with 27 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -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 { };