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

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

28 lines
688 B
Nix
Raw Normal View History

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";
changelog = "https://github.com/RaphGL/Tuckr/releases/tag/${version}";
2023-02-15 22:47:24 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mimame ];
};
}