1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "acpid-2.0.28";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/acpid2/${name}.tar.xz";
8 sha256 = "043igasvp1l6nv5rzh4sksmymay2qn20anl4zm4zvwnkn1a3l34q";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = http://tedfelix.com/linux/acpid-netlink.html;
13 description = "A daemon for delivering ACPI events to userspace programs";
14 license = licenses.gpl2Plus;
15 platforms = platforms.linux;
16 };
17}