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
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";
in
@ -92,7 +94,8 @@ stdenv.mkDerivation rec {
};
passthru = {
inherit gtk version ffversion src;
inherit gtk ffversion src;
version = shownVersion;
};
}