blob: 0f9a2edfd4710bf5d59d83f5f8be74167b15c422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
with import <nixpkgs> {};
# nix-build Reaktor.nix
# result/bin/reaktor
## or in your env
# nix-env -i -f Reaktor.nix
buildPythonPackage rec {
name = "Reaktor-${version}";
version = "0.2.6";
propagatedBuildInputs = with pkgs;[
pythonPackages.docopt
utillinux # for tell_on-join
git
];
src = fetchurl {
url = "https://pypi.python.org/packages/source/R/Reaktor/Reaktor-${version}.tar.gz";
sha256 = "1dksw1s1n2hxvnga6pygjr174dywncr0wiggkrkn1srbn2amh1c2";
};
meta = {
homepage = http://krebsco.de/;
description = "An IRC bot based on asynchat";
license = stdenv.lib.licenses.wtfpl;
};
}
|