summary refs log tree commit diff
path: root/pkgs/tools/misc/disper/default.nix
blob: b4a159745d46f33afac06f3980ffa25f14021205 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, python}:

stdenv.mkDerivation rec {
  name = "disper-0.3.0";

  buildInputs = [python];

  preConfigure = ''
    export makeFlags="PREFIX=$out"
  '';

  src = fetchurl {
    url = http://ppa.launchpad.net/disper-dev/ppa/ubuntu/pool/main/d/disper/disper_0.3.0.tar.gz;
    sha256 = "1mfqidm5c89nknzksabqgjygdp57xpszz7hy2dxh39hpgrsk3l58";
  };

  meta = {
    description = "On-the-fly display switch utility";
    homepage = http://willem.engen.nl/projects/disper/;
  };

}