2022-06-08 02:17:47 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-09-13 08:56:50 +00:00
|
|
|
, nix-update-script
|
2022-06-08 02:17:47 +00:00
|
|
|
, rustPlatform
|
|
|
|
, CoreServices
|
|
|
|
, which
|
|
|
|
}:
|
2022-02-22 14:46:05 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "dotter";
|
2023-07-24 05:46:11 +00:00
|
|
|
version = "0.13.0";
|
2022-02-22 14:46:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SuperCuber";
|
|
|
|
repo = "dotter";
|
2022-04-25 12:49:50 +00:00
|
|
|
rev = "v${version}";
|
2023-07-23 00:18:06 +00:00
|
|
|
hash = "sha256-mAvTy/11a9RGSQpElhpKMzsMC7vA7cbeHsNRy9MnIjw=";
|
2022-02-22 14:46:05 +00:00
|
|
|
};
|
|
|
|
|
2023-07-24 05:46:11 +00:00
|
|
|
cargoHash = "sha256-XsDp/ssoNVdTHDTPm2ucgBeYmFgbeBIxQ/NsGjCl5Qg=";
|
2022-02-22 14:46:05 +00:00
|
|
|
|
2022-05-12 07:28:06 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ which ];
|
2022-02-22 14:46:05 +00:00
|
|
|
|
2022-09-13 08:56:50 +00:00
|
|
|
passthru = {
|
2022-12-25 22:11:14 +00:00
|
|
|
updateScript = nix-update-script { };
|
2022-09-13 08:56:50 +00:00
|
|
|
};
|
|
|
|
|
2022-02-22 14:46:05 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|