5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
26 lines
731 B
Nix
26 lines
731 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tuckr";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RaphGL";
|
|
repo = "Tuckr";
|
|
rev = version;
|
|
hash = "sha256-cIyqka/+CrO9RuKr7tI79QvpPA0mDL/YzWWWrcwin8E=";
|
|
};
|
|
|
|
cargoHash = "sha256-5Z7UpkLlNMW8prtdJO+Xr45fpacjhDBoD/RFv/H44t0=";
|
|
|
|
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";
|
|
};
|
|
}
|