Add MKRAND

This commit is contained in:
M Knight 2014-10-08 20:03:09 -05:00
parent af53f40684
commit ab17c2b8f5
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mkrand-0.1.0";
src = fetchurl {
url = "https://github.com/mknight-tag/MKRAND/releases/download/v0.1.0/mkrand-0.1.0.tar.gz";
sha256 = "1irwyv2j5c3606k3qbq77yrd65y27rcq3jdlp295rz875q8iq9fs";
};
doCheck = true;
meta = {
description = "A Digital Random Bit Generator";
longDescription = "MKRAND is a utility for generating random information.";
homepage = https://github.com/mknight-tag/MKRAND/;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -1663,6 +1663,8 @@ let
mkpasswd = callPackage ../tools/security/mkpasswd { };
mkrand = callPackage ../tools/security/mkrand { };
mktemp = callPackage ../tools/security/mktemp { };
mktorrent = callPackage ../tools/misc/mktorrent { };