mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
590 B
Nix
23 lines
590 B
Nix
{ lib, buildDunePackage, fetchurl, cstruct }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-random";
|
|
version = "2.0.0";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/mirage-random/releases/download/v${version}/mirage-random-v${version}.tbz";
|
|
sha256 = "0qj41d5smkkkbjwsnz71bhhj94d2cwv53rf3j4rhky0pqbkidnv1";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cstruct ];
|
|
|
|
meta = {
|
|
description = "Random signatures for MirageOS";
|
|
homepage = "https://github.com/mirage/mirage-random";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|