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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
545 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "acpid";
2022-09-20 05:01:34 +00:00
version = "2.0.34";
src = fetchurl {
url = "mirror://sourceforge/acpid2/acpid-${version}.tar.xz";
2022-09-20 05:01:34 +00:00
sha256 = "sha256-LQlcjPy8hHyux0bWLNyNC/8ewbxy73xnTHIeBNpqszM=";
};
2018-05-09 23:01:21 +00:00
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "https://sourceforge.net/projects/acpid2/";
description = "A daemon for delivering ACPI events to userspace programs";
2016-04-30 10:32:18 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}