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

19 lines
512 B
Nix
Raw Normal View History

2015-08-18 20:32:29 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-05-23 02:32:39 +02:00
name = "acpid-2.0.28";
src = fetchurl {
2013-11-20 19:50:57 +01:00
url = "mirror://sourceforge/acpid2/${name}.tar.xz";
2017-05-23 02:32:39 +02:00
sha256 = "043igasvp1l6nv5rzh4sksmymay2qn20anl4zm4zvwnkn1a3l34q";
};
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;
maintainers = with maintainers; [ nckx ];
};
}