python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / psw / default.nix
blobc3d9b347ce1b729bd1493847ae3bad348db874fd
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "psw";
8   version = "0.2.0";
10   src = fetchFromGitHub {
11     owner = "Wulfsta";
12     repo = pname;
13     rev = version;
14     sha256 = "1nwmps3zw99lrz6k1j14w4rcm7yj8vhf4cs9wjfc3c1zfjibz9iz";
15   };
17   cargoSha256 = "1y2am1bz68q7d9bn4264al13fv2j6a87bwrd60ycx0qak9fczlmv";
19   meta = with lib; {
20     description = "A command line tool to write random bytes to stdout";
21     homepage = "https://github.com/Wulfsta/psw";
22     license = with licenses; [ asl20 /* or */ mit ];
23     maintainers = with maintainers; [ wulfsta ];
24   };