psw: init at 0.1.2

This commit is contained in:
Wulfsta 2021-01-10 18:00:17 -05:00 committed by Cole Helbling
parent a67cfc0cdc
commit 5ca3562611
2 changed files with 28 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -6894,6 +6894,8 @@ in
openssl = openssl_1_0_2;
};
psw = callPackage ../tools/misc/psw { };
pws = callPackage ../tools/misc/pws { };
cntlm = callPackage ../tools/networking/cntlm { };