mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
psw: init at 0.1.2
This commit is contained in:
parent
a67cfc0cdc
commit
5ca3562611
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/misc/psw/default.nix
Normal file
26
pkgs/tools/misc/psw/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6894,6 +6894,8 @@ in
|
||||||
openssl = openssl_1_0_2;
|
openssl = openssl_1_0_2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
psw = callPackage ../tools/misc/psw { };
|
||||||
|
|
||||||
pws = callPackage ../tools/misc/pws { };
|
pws = callPackage ../tools/misc/pws { };
|
||||||
|
|
||||||
cntlm = callPackage ../tools/networking/cntlm { };
|
cntlm = callPackage ../tools/networking/cntlm { };
|
||||||
|
|
Loading…
Reference in a new issue