nixpkgs/pkgs/development/tools/build-managers/scons/0.96.1.nix
Peter Simons bc4f5932ad scons: updated to version 0.95.5 and added selectVersion dispatcher
Scons is not only a tool, it's also a python library. However, the
modules are installed in ~/.nix-profile/lib/scons-${version} -- not in
python's "site-packages" directory -- so python won't find the library
without further help. Maybe there should be a symlink in nix-profile? I
guess there should, but I didn't know how to write that into the
expression.

svn path=/nixpkgs/trunk/; revision=12157
2008-06-18 22:48:54 +00:00

10 lines
217 B
Nix

{stdenv, fetchurl, python, version ? "0.96.1"}:
assert version == "0.96.1";
import ./default.nix
{
inherit stdenv fetchurl python version;
versionHash = "0z8cimrb10pj10zx9hv8xdqa1dpwjj61yhf3l26ifw323in1isk7";
}