bc4f5932ad
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
10 lines
217 B
Nix
10 lines
217 B
Nix
{stdenv, fetchurl, python, version ? "0.98.5"}:
|
|
|
|
assert version == "0.98.5";
|
|
|
|
import ./default.nix
|
|
{
|
|
inherit stdenv fetchurl python version;
|
|
versionHash = "0xya9pkrwkdg1z2671slhl5nr5jf0pq46cr9ak7dxc8b0wazsh6j";
|
|
}
|