tuicam: init at 0.0.2 (#377825)
[NixPkgs.git] / pkgs / by-name / ps / psw / package.nix
blob8a1ddc79eb77af9c2c3fdfe1a1030f56d12e66ef
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "psw";
9   version = "0.2.1";
11   src = fetchFromGitHub {
12     owner = "Wulfsta";
13     repo = pname;
14     rev = version;
15     sha256 = "sha256-Rf6vpVgenTzb42/aGqItuxUodl61eNyUPlry7rgLPbI=";
16   };
18   useFetchCargoVendor = true;
19   cargoHash = "sha256-dfHcyGQYkjEAhrNRlD5BTbMwaZaO/E0KwqZJ8TjelGw=";
21   meta = with lib; {
22     description = "Command line tool to write random bytes to stdout";
23     homepage = "https://github.com/Wulfsta/psw";
24     license = with licenses; [
25       asl20 # or
26       mit
27     ];
28     maintainers = with maintainers; [ wulfsta ];
29   };