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

26 lines
604 B
Nix
Raw Normal View History

2021-01-11 00:00:17 +01:00
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "psw";
2021-01-17 01:54:36 +01:00
version = "0.2.0";
2021-01-11 00:00:17 +01:00
src = fetchFromGitHub {
owner = "Wulfsta";
repo = pname;
rev = version;
2021-01-17 01:54:36 +01:00
sha256 = "1nwmps3zw99lrz6k1j14w4rcm7yj8vhf4cs9wjfc3c1zfjibz9iz";
2021-01-11 00:00:17 +01:00
};
2021-01-17 01:54:36 +01:00
cargoSha256 = "0a6hhangbx62nsyrfzbxjv7cg5c9d8wh83f02ay72gkf48sqy75h";
2021-01-11 00:00:17 +01:00
meta = with lib; {
description = "A 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 ];
};
}