4 , enableAppletSymlinks ? true
9 in rustPlatform.buildRustPackage {
13 src = fetchFromGitHub {
16 rev = "release-${version}";
17 hash = "sha256-c5+Q/y2tZfhXQIAs1W67/xfB+qz1Xn33tKXRGDAi3qs=";
23 cargoHash = "sha256-jRkwfIEB9DEzoV5xogTDz1cHfdsvLM6E27E7hQBa9JY=";
25 # Setup symlinks for all the utilities,
27 postInstall = lib.optionalString enableAppletSymlinks ''
29 path="$(realpath --canonicalize-missing ./rsbkb)"
30 for i in $(./rsbkb list) ; do ln -s $path $i ; done
34 description = "Command line tools to encode/decode things";
35 homepage = "https://github.com/trou/rsbkb";
36 changelog = "https://github.com/trou/rsbkb/releases/tag/release-${version}";
37 license = licenses.gpl3Plus;
38 maintainers = with maintainers; [ ProducerMatt ];