Account for RC1 xulrunner claiming to be 1.9.1

svn path=/nixpkgs/trunk/; revision=15993
This commit is contained in:
Michael Raskin 2009-06-18 11:37:49 +00:00
parent 603e3e8c6f
commit e15e850360

View File

@ -11,7 +11,9 @@
let let
version = "1.9.1rc1"; # this attribute is used by other packages version = "1.9.1rc1";
shownVersion = "1.9.1"; # this attribute is used by other packages
# _usually_ it is the same as version
ffversion = "3.5rc1"; ffversion = "3.5rc1";
in in
@ -92,7 +94,8 @@ stdenv.mkDerivation rec {
}; };
passthru = { passthru = {
inherit gtk version ffversion src; inherit gtk ffversion src;
version = shownVersion;
}; };
} }