Attach a bunch of meta.branch info for the monitor
This should stop explicitly-versioned expressions from showing up in the monitor as in need of update.
This commit is contained in:
parent
9ee5b8d3fc
commit
0c43a02e36
@ -21,4 +21,7 @@ import ./generic.nix {
|
||||
postInstall = "
|
||||
sed 's|V4.2|V4.1.2|g' < ${docbook42catalog} > catalog.xml
|
||||
";
|
||||
meta = {
|
||||
branch = "4.1.2";
|
||||
};
|
||||
}
|
||||
|
@ -7,4 +7,7 @@ import ./generic.nix {
|
||||
url = http://www.docbook.org/xml/4.2/docbook-xml-4.2.zip;
|
||||
md5 = "73fe50dfe74ca631c1602f558ed8961f";
|
||||
};
|
||||
meta = {
|
||||
branch = "4.2";
|
||||
};
|
||||
}
|
||||
|
@ -7,4 +7,7 @@ import ./generic.nix {
|
||||
url = http://www.docbook.org/xml/4.3/docbook-xml-4.3.zip;
|
||||
md5 = "ab200202b9e136a144db1e0864c45074";
|
||||
};
|
||||
meta = {
|
||||
branch = "4.3";
|
||||
};
|
||||
}
|
||||
|
@ -7,4 +7,7 @@ import ./generic.nix {
|
||||
url = http://www.docbook.org/xml/4.5/docbook-xml-4.5.zip;
|
||||
sha256 = "1d671lcjckjri28xfbf6dq7y3xnkppa910w1jin8rjc35dx06kjf";
|
||||
};
|
||||
meta = {
|
||||
branch = "4.5";
|
||||
};
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
{stdenv, fetchurl, unzip, src, name, postInstall ? "true"}:
|
||||
{ stdenv, fetchurl, unzip, src, name, postInstall ? "true", meta ? {} }:
|
||||
|
||||
assert unzip != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit src name postInstall;
|
||||
inherit src name postInstall meta;
|
||||
builder = ./builder.sh;
|
||||
buildInputs = [unzip];
|
||||
}
|
||||
|
@ -4,4 +4,5 @@ import ./generic.nix (args // rec {
|
||||
version = "4.4.20";
|
||||
extraPatches = [ ./cygwin-4.4.patch ];
|
||||
sha256 = "0y9vsq8dkarx1mhhip1vaciz6imbbyv37c1dm8b20l7p064bg2i9";
|
||||
branch = "4.4";
|
||||
})
|
||||
|
@ -4,4 +4,5 @@ import ./generic.nix (args // rec {
|
||||
version = "4.5.20";
|
||||
extraPatches = [ ./cygwin-4.5.patch ./register-race-fix.patch ];
|
||||
sha256 = "0bd81k0qv5i8w5gbddrvld45xi9k1gvmcrfm0393v0lrm37dab7m";
|
||||
branch = "4.5";
|
||||
})
|
||||
|
@ -3,4 +3,5 @@
|
||||
import ./generic.nix (args // rec {
|
||||
version = "4.7.25";
|
||||
sha256 = "0gi667v9cw22c03hddd6xd6374l0pczsd56b7pba25c9sdnxjkzi";
|
||||
branch = "4.7";
|
||||
})
|
||||
|
@ -3,4 +3,5 @@
|
||||
import ./generic.nix (args // rec {
|
||||
version = "4.8.30";
|
||||
sha256 = "0ampbl2f0hb1nix195kz1syrqqxpmvnvnfvphambj7xjrl3iljg0";
|
||||
branch = "4.8";
|
||||
})
|
||||
|
@ -4,4 +4,5 @@ import ./generic.nix (args // rec {
|
||||
version = "5.3.28";
|
||||
sha256 = "0a1n5hbl7027fbz5lm0vp0zzfp1hmxnz14wx3zl9563h83br5ag0";
|
||||
extraPatches = [ ./osx.patch ];
|
||||
branch = "5.3";
|
||||
})
|
||||
|
@ -4,4 +4,5 @@ import ./generic.nix (args // rec {
|
||||
version = "6.0.20";
|
||||
sha256 = "00r2aaglq625y8r9xd5vw2y070plp88f1mb2gbq3kqsl7128lsl0";
|
||||
license = stdenv.lib.licenses.agpl3;
|
||||
branch = "6.0";
|
||||
})
|
||||
|
@ -6,6 +6,7 @@
|
||||
, version, sha256
|
||||
, extraPatches ? [ ]
|
||||
, license ? stdenv.lib.licenses.sleepycat
|
||||
, branch ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -37,5 +38,6 @@ stdenv.mkDerivation rec {
|
||||
description = "Berkeley DB";
|
||||
license = license;
|
||||
platforms = platforms.unix;
|
||||
branch = branch;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user