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

19 lines
512 B
Nix
Raw Normal View History

2015-08-18 19:32:29 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-04-30 11:32:18 +01:00
name = "acpid-2.0.27";
src = fetchurl {
2013-11-20 18:50:57 +00:00
url = "mirror://sourceforge/acpid2/${name}.tar.xz";
2016-04-30 11:32:18 +01:00
sha256 = "05m6scbdzi2fb8zzi01c11a10pr0qb1gzccz4bbxj4fcacz24342";
};
2016-04-30 11:32:18 +01: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 11:32:18 +01:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}