nixpkgs/pkgs/tools/misc/psw/default.nix

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

26 lines
598 B
Nix
Raw Normal View History

2021-01-10 23:00:17 +00:00
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "psw";
2024-05-20 14:06:46 +00:00
version = "0.2.1";
2021-01-10 23:00:17 +00:00
src = fetchFromGitHub {
owner = "Wulfsta";
repo = pname;
rev = version;
2024-05-20 14:06:46 +00:00
sha256 = "sha256-Rf6vpVgenTzb42/aGqItuxUodl61eNyUPlry7rgLPbI=";
2021-01-10 23:00:17 +00:00
};
2024-05-20 14:06:46 +00:00
cargoHash = "sha256-+0eMhOteNK3QTnG0HB3/TYDFmPTztdQ0h3RKBTN0J/o=";
2021-01-10 23:00:17 +00:00
meta = with lib; {
description = "Command line tool to write random bytes to stdout";
homepage = "https://github.com/Wulfsta/psw";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ wulfsta ];
};
}