2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook }:
|
2009-02-11 00:12:18 +01:00
|
|
|
|
2010-02-11 19:59:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-27 16:47:49 +02:00
|
|
|
pname = "acpid";
|
2021-12-12 02:50:00 +01:00
|
|
|
version = "2.0.33";
|
2012-11-02 23:56:13 +01:00
|
|
|
|
2009-02-11 00:12:18 +01:00
|
|
|
src = fetchurl {
|
2021-08-27 16:47:49 +02:00
|
|
|
url = "mirror://sourceforge/acpid2/acpid-${version}.tar.xz";
|
2021-12-12 02:50:00 +01:00
|
|
|
sha256 = "sha256-CFb3Gz6zShtmPQqOY2Pfy8UZ5j2EczBJiJhljily2+g=";
|
2009-02-11 00:12:18 +01:00
|
|
|
};
|
|
|
|
|
2018-05-10 01:01:21 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://sourceforge.net/projects/acpid2/";
|
2009-02-11 00:12:18 +01:00
|
|
|
description = "A daemon for delivering ACPI events to userspace programs";
|
2016-04-30 12:32:18 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2009-02-11 00:12:18 +01:00
|
|
|
};
|
|
|
|
}
|