2015-08-18 11:32:29 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2009-02-10 15:12:18 -08:00
|
|
|
|
2010-02-11 10:59:58 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-30 03:32:18 -07:00
|
|
|
name = "acpid-2.0.27";
|
2012-11-02 15:56:13 -07:00
|
|
|
|
2009-02-10 15:12:18 -08:00
|
|
|
src = fetchurl {
|
2013-11-20 10:50:57 -08:00
|
|
|
url = "mirror://sourceforge/acpid2/${name}.tar.xz";
|
2016-04-30 03:32:18 -07:00
|
|
|
sha256 = "05m6scbdzi2fb8zzi01c11a10pr0qb1gzccz4bbxj4fcacz24342";
|
2009-02-10 15:12:18 -08:00
|
|
|
};
|
|
|
|
|
2016-04-30 03:32:18 -07:00
|
|
|
meta = with stdenv.lib; {
|
2012-11-02 15:56:13 -07:00
|
|
|
homepage = http://tedfelix.com/linux/acpid-netlink.html;
|
2009-02-10 15:12:18 -08:00
|
|
|
description = "A daemon for delivering ACPI events to userspace programs";
|
2016-04-30 03:32:18 -07:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
2009-02-10 15:12:18 -08:00
|
|
|
};
|
|
|
|
}
|