depot/third_party/nixpkgs/pkgs/applications/misc/tuckr/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

26 lines
731 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "tuckr";
version = "0.9.1";
src = fetchFromGitHub {
owner = "RaphGL";
repo = "Tuckr";
rev = version;
hash = "sha256-5KDBtbovs3tPuLNJqHyMM9mGV8cNgJFv3QqAtLVOhns=";
};
cargoHash = "sha256-LvvC60CNl/y1rx4UTKVLFeiaJBNpou5JrCdsmZvTccU=";
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}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mimame ];
mainProgram = "tuckr";
};
}