mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
dotter: init at 0.12.9
This commit is contained in:
parent
a6e67d13c4
commit
dd00116269
25
pkgs/tools/misc/dotter/default.nix
Normal file
25
pkgs/tools/misc/dotter/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user