27 lines
688 B
Nix
27 lines
688 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tuckr";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RaphGL";
|
|
repo = "Tuckr";
|
|
rev = version;
|
|
sha256 = "sha256-S4mHNCyK7WGYRBckxQkwA3+eu7QhUyKkOZ/KqhMJf+s=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
doCheck = false; # test result: FAILED. 5 passed; 3 failed;
|
|
|
|
meta = with lib; {
|
|
description = "A 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 ];
|
|
};
|
|
}
|