summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kudzu/default.nix
blob: 5cc8161bd94e7552b5fe67629aff614516b787aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, pciutils, python, popt, gettext}:

stdenv.mkDerivation {
  name = "kudzu-1.2.16";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://losser.labs.cs.uu.nl/~armijn/.nix/kudzu-1.2.16.tar.gz;
    md5 = "5fc786dd558064fd9c9cb3e5be10e799";
  };
  buildInputs = [pciutils python popt gettext];
  inherit python;
  patches = [./kudzu-python.patch];
}