nixpkgs/pkgs/tools/text/rsbkb/default.nix
Producer Matt e3fb7c3314 rsbkb: init at 1.1
Plus Anderson's suggestions

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2023-01-19 13:32:44 -06:00

36 lines
962 B
Nix

{ lib,
fetchFromGitHub,
rustPlatform,
enableAppletSymlinks ? true,
}:
rustPlatform.buildRustPackage rec {
pname = "rsbkb";
version = "1.1";
src = fetchFromGitHub {
owner = "trou";
repo = "rsbkb";
rev = "release-${version}";
hash = "sha256-SqjeH0eOo+upSfPWh2IW75p1VHMqmzAbCchDrXhvMxs=";
};
cargoSha256 = "N3Xlw2JzTjqWLiVNCZaomsWQl330kGVlwdz4Gf05TGU=";
# Setup symlinks for all the utilities,
# busybox style
postInstall = lib.optionalString enableAppletSymlinks
''
cd $out/bin || exit 1
path="$(realpath --canonicalize-missing ./rsbkb)"
for i in $(./rsbkb list) ; do ln -s $path $i ; done
'';
meta = with lib; {
description = "Command line tools to encode/decode things";
homepage = "https://github.com/trou/rsbkb";
changelog = "https://github.com/trou/rsbkb/releases/tag/release-${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ProducerMatt ];
};
}