nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, rustPlatform, fetchFromGitHub }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "tuckr";
5 version = "0.8.0";
6
7 src = fetchFromGitHub {
8 owner = "RaphGL";
9 repo = "Tuckr";
10 rev = version;
11 sha256 = "sha256-S4mHNCyK7WGYRBckxQkwA3+eu7QhUyKkOZ/KqhMJf+s=";
12 };
13
14 cargoLock = {
15 lockFile = ./Cargo.lock;
16 };
17
18 doCheck = false; # test result: FAILED. 5 passed; 3 failed;
19
20 meta = with lib; {
21 description = "A super powered replacement for GNU Stow";
22 homepage = "https://github.com/RaphGL/Tuckr";
23 changelog = "https://github.com/RaphGL/Tuckr/releases/tag/${version}";
24 license = licenses.gpl3Plus;
25 maintainers = with maintainers; [ mimame ];
26 };
27}