blob: f91d348e8b700aaae569e56008b8530e80fd69f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mkrand";
version = "0.1.0";
src = fetchurl {
url = "https://github.com/mknight-tag/MKRAND/releases/download/v${finalAttrs.version}/mkrand-${finalAttrs.version}.tar.gz";
sha256 = "1irwyv2j5c3606k3qbq77yrd65y27rcq3jdlp295rz875q8iq9fs";
};
doCheck = true;
meta = {
description = "Digital Random Bit Generator";
mainProgram = "mkrand";
longDescription = "MKRAND is a utility for generating random information.";
homepage = "https://github.com/mknight-tag/MKRAND/";
license = lib.licenses.mit;
platforms = lib.platforms.all;
};
})
|