nixpkgs/pkgs/servers/gpm/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

2015-04-30 22:31:11 +00:00
{ stdenv, fetchurl, automake, autoconf, libtool, flex, bison, texinfo
# Optional Dependencies
, ncurses ? null
}:
stdenv.mkDerivation rec {
2015-04-05 03:31:55 +00:00
name = "gpm-1.20.7";
src = fetchurl {
url = "http://www.nico.schottelius.org/software/gpm/archives/${name}.tar.bz2";
2015-04-05 03:31:55 +00:00
sha256 = "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh";
};
2015-04-30 22:31:11 +00:00
nativeBuildInputs = [ automake autoconf libtool flex bison texinfo ];
buildInputs = [ ncurses ];
2016-01-23 21:19:59 +00:00
hardening_format = false;
2015-12-23 01:59:47 +00:00
2015-04-05 03:31:55 +00:00
preConfigure = ''
./autogen.sh
'';
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
2015-04-30 22:31:11 +00:00
(if ncurses == null then "--without-curses" else "--with-curses")
2015-04-05 03:31:55 +00:00
];
2015-04-30 22:31:11 +00:00
# Provide libgpm.so for compatability
postInstall = ''
2015-04-30 22:31:11 +00:00
ln -sv $out/lib/libgpm.so.2 $out/lib/libgpm.so
'';
2015-04-30 22:31:11 +00:00
meta = with stdenv.lib; {
homepage = http://www.nico.schottelius.org/software/gpm/;
description = "A daemon that provides mouse support on the Linux console";
2015-04-30 22:31:11 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ eelco wkennington ];
};
}