depot/third_party/nixpkgs/pkgs/by-name/tu/tuckr/package.nix

30 lines
739 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "tuckr";
version = "0.10.0";
src = fetchFromGitHub {
owner = "RaphGL";
repo = "Tuckr";
rev = version;
hash = "sha256-JxXFz7ijCQktpYrwBA8ajvZj3gRloO/cAOo4wskF70o=";
};
cargoHash = "sha256-mGBsQd3yiwuAH3KHtAsLx0ai3ui2EUaf9SW+czvo9vE=";
doCheck = false; # test result: FAILED. 5 passed; 3 failed;
meta = with lib; {
description = "Super powered replacement for GNU Stow";
homepage = "https://github.com/RaphGL/Tuckr";
changelog = "https://github.com/RaphGL/Tuckr/releases/tag/${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mimame ];
mainProgram = "tuckr";
};
}