nixpkgs/pkgs/servers/gpm/default.nix

64 lines
2.1 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, automake, autoconf, libtool, flex, bison, texinfo, fetchpatch
2015-04-30 22:31:11 +00:00
# Optional Dependencies
, ncurses ? null
}:
stdenv.mkDerivation rec {
pname = "gpm";
version = "1.20.7";
src = fetchurl {
url = "https://www.nico.schottelius.org/software/gpm/archives/gpm-${version}.tar.bz2";
2015-04-05 03:31:55 +00:00
sha256 = "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh";
};
2017-11-07 07:33:48 +00:00
postPatch = ''
substituteInPlace src/prog/gpm-root.y --replace __sigemptyset sigemptyset
'';
2015-04-30 22:31:11 +00:00
nativeBuildInputs = [ automake autoconf libtool flex bison texinfo ];
buildInputs = [ ncurses ];
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
patches = [
# musl compat patches, safe everywhere
(fetchpatch {
url = "https://raw.githubusercontent.com/gentoo/musl/5aed405d87dfa92a5cab1596f898e9dea07169b8/sys-libs/gpm/files/gpm-1.20.7-musl-missing-headers.patch";
sha256 = "1g338m6j1sba84wlqp1r6rpabj5nm6ki577hjalg46czg0lfp20h";
})
# Touches same code as glibc fix in postPatch above, but on the non-glibc route
(fetchpatch {
url = "https://raw.githubusercontent.com/gentoo/musl/5aed405d87dfa92a5cab1596f898e9dea07169b8/sys-libs/gpm/files/gpm-1.20.7-musl-portable-sigaction.patch";
sha256 = "0hfdqm9977hd5dpzn05y0a6jbj55w1kp4hd9gyzmg9wslmxni4rg";
})
(fetchpatch {
url = "https://raw.githubusercontent.com/gentoo/musl/5aed405d87dfa92a5cab1596f898e9dea07169b8/sys-libs/gpm/files/gpm-1.20.7-sysmacros.patch";
sha256 = "0lg4l9phvy2n8gy17qsn6zn0qq52vm8g01pgq5kqpr8sd3fb21c2";
})
];
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
'';
meta = with lib; {
homepage = "https://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;
2017-05-23 13:36:32 +00:00
platforms = platforms.linux ++ platforms.cygwin;
maintainers = with maintainers; [ eelco ];
};
}