* Fix that annoying deprecated getAttr warning.

svn path=/nixpkgs/trunk/; revision=16049
This commit is contained in:
Eelco Dolstra 2009-06-26 11:03:14 +00:00
parent c59fb90f62
commit c69010d6eb

View File

@ -2,7 +2,7 @@ a :
let
fetchurl = a.fetchurl;
version = a.lib.getAttr ["version"] "0.6c9" a;
version = a.lib.attrByPath ["version"] "0.6c9" a;
buildInputs = with a; [
python makeWrapper
];