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

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

31 lines
789 B
Nix
Raw Normal View History

2023-02-15 22:47:24 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "tuckr";
version = "0.7.1";
2023-02-15 22:47:24 +00:00
src = fetchFromGitHub {
owner = "RaphGL";
repo = "Tuckr";
rev = version;
sha256 = "sha256-47qnBGCiPWJGF4QcqjzmDIZWlCO3xE3QyIF6nSPGWAc=";
2023-02-15 22:47:24 +00:00
};
cargoHash = "sha256-IX7ZX4fKBK0wS7nlSdf/bVGzXl2GU7qwwmtPMoOe/m8=";
2023-02-15 22:47:24 +00:00
# Cargo.lock is outdated
preConfigure = ''
cargo update --offline
'';
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 ];
};
}