nixpkgs/pkgs/applications/misc/tuckr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
731 B
Nix
Raw Normal View History

2023-02-15 22:47:24 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "tuckr";
2024-06-18 16:50:28 +00:00
version = "0.8.1";
2023-02-15 22:47:24 +00:00
src = fetchFromGitHub {
owner = "RaphGL";
repo = "Tuckr";
rev = version;
2024-06-18 16:50:28 +00:00
hash = "sha256-oQSuR0Zt1T8YU3O2Dq/qHl4ysVDl+3EVvp9r2mD3hRA=";
2023-02-15 22:47:24 +00:00
};
2024-06-18 16:50:28 +00:00
cargoHash = "sha256-ESDfUZsoqwBurXuwNIRSqxoDWnA2VpDZ9Q9GGaV8B4Y=";
2023-02-15 22:47:24 +00:00
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}";
2023-02-15 22:47:24 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mimame ];
2024-02-11 02:19:15 +00:00
mainProgram = "tuckr";
2023-02-15 22:47:24 +00:00
};
}