2023-02-15 22:47:24 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "tuckr";
|
2023-03-27 20:56:21 +00:00
|
|
|
version = "0.8.0";
|
2023-02-15 22:47:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RaphGL";
|
|
|
|
repo = "Tuckr";
|
|
|
|
rev = version;
|
2023-03-27 20:56:21 +00:00
|
|
|
sha256 = "sha256-S4mHNCyK7WGYRBckxQkwA3+eu7QhUyKkOZ/KqhMJf+s=";
|
2023-02-15 22:47:24 +00:00
|
|
|
};
|
|
|
|
|
2023-03-27 20:56:21 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
};
|
2023-02-15 22:47:24 +00:00
|
|
|
|
|
|
|
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";
|
2023-03-21 17:24:45 +00:00
|
|
|
changelog = "https://github.com/RaphGL/Tuckr/releases/tag/${version}";
|
2023-02-15 22:47:24 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ mimame ];
|
|
|
|
};
|
|
|
|
}
|