0c43a02e36
This should stop explicitly-versioned expressions from showing up in the monitor as in need of update.
9 lines
209 B
Nix
9 lines
209 B
Nix
{ stdenv, fetchurl, unzip, src, name, postInstall ? "true", meta ? {} }:
|
|
|
|
assert unzip != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit src name postInstall meta;
|
|
builder = ./builder.sh;
|
|
buildInputs = [unzip];
|
|
}
|