blob: b804b44af25366521af15927c3c5d051f3453a5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
with import <nixpkgs> {};
# nix-build Reaktor.nix
# result/bin/reaktor
buildPythonPackage rec {
name = "Reaktor-${version}";
version = "0.2.6";
propagatedBuildInputs = with pkgs.pythonPackages;[
pythonPackages.docopt
];
src = fetchurl {
url = "https://pypi.python.org/packages/source/R/Reaktor/Reaktor-0.2.6.tar.gz";
sha256 = "1dksw1s1n2hxvnga6pygjr174dywncr0wiggkrkn1srbn2amh1c2";
};
}
|