forked from DGNum/liminix
d16169bd33
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
13 lines
218 B
Nix
13 lines
218 B
Nix
{ stdenv }:
|
|
stdenv.mkDerivation {
|
|
pname = "seedrng";
|
|
version = "2022.04";
|
|
|
|
src = ./.;
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"SBINDIR=${placeholder "out"}/bin"
|
|
"LOCALSTATEDIR=/persist"
|
|
];
|
|
}
|