3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/dotter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
768 B
Nix
Raw Normal View History

2022-06-08 03:17:47 +01:00
{ lib
, stdenv
, fetchpatch
, fetchFromGitHub
, rustPlatform
, CoreServices
, which
}:
2022-02-22 14:46:05 +00:00
rustPlatform.buildRustPackage rec {
pname = "dotter";
2022-07-22 04:58:11 +01:00
version = "0.12.13";
2022-02-22 14:46:05 +00:00
src = fetchFromGitHub {
owner = "SuperCuber";
repo = "dotter";
2022-04-25 13:49:50 +01:00
rev = "v${version}";
2022-07-22 04:58:11 +01:00
hash = "sha256-j3Dj43AbD0V5pZ6mM1uvPsqWAVJrmWyWvwC5NK1cRRY=";
2022-02-22 14:46:05 +00:00
};
2022-07-22 04:58:11 +01:00
cargoHash = "sha256-HPs55JBbYObunU0cSm/7lsu/DOk4ne9Ea9MCRJ427zo=";
2022-02-22 14:46:05 +00:00
2022-05-12 08:28:06 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
2022-02-22 14:46:05 +00:00
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";
};
}