Skip to content

Commit

Permalink
psw: init at 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Wulfsta committed Jan 11, 2021
1 parent 5812324 commit 351b180
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/tools/misc/psw/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
pname = "psw";
version = "0.1.2";

src = fetchFromGitHub {
owner = "Wulfsta";
repo = pname;
rev = version;
sha256 = "10raj4899i01f5v13w0wxdnjjicql2wjblkq1zcagrfv3ly3d0fy";
};

cargoSha256 = "1w18rym0xnjk7vhrb2dc4cvhg659zbq5d2153gw2snxcbs7gh7r1";

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 ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6882,6 +6882,8 @@ in
openssl = openssl_1_0_2;
};

psw = callPackage ../tools/misc/psw { };

pws = callPackage ../tools/misc/pws { };

cntlm = callPackage ../tools/networking/cntlm { };
Expand Down

0 comments on commit 351b180

Please sign in to comment.