mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
27 lines
732 B
Nix
27 lines
732 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";
|
|
};
|
|
}
|