nixpkgs/pkgs/os-specific/linux/acpid/default.nix

27 lines
728 B
Nix
Raw Normal View History

2018-05-10 01:01:21 +02:00
{ stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
name = "acpid-2.0.29";
src = fetchurl {
2013-11-20 19:50:57 +01:00
url = "mirror://sourceforge/acpid2/${name}.tar.xz";
sha256 = "1zq38al07z92r2md18zivrzgjqnn7m2wahdpgri6wijwjwkknl2q";
};
2018-05-10 01:01:21 +02:00
nativeBuildInputs = [ autoreconfHook ];
postPatch = ''
substituteInPlace configure.ac \
--replace "AC_FUNC_MALLOC" "" \
--replace "AC_FUNC_REALLOC" "" \
--replace "strrchr strtol" "strrchr strtol malloc realloc"
'';
2016-04-30 12:32:18 +02:00
meta = with stdenv.lib; {
homepage = http://tedfelix.com/linux/acpid-netlink.html;
description = "A daemon for delivering ACPI events to userspace programs";
2016-04-30 12:32:18 +02:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}