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