nixpkgs/pkgs/data/misc/ddccontrol-db/default.nix

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

38 lines
723 B
Nix
Raw Normal View History

{ lib, stdenv
, autoconf
, automake
, libtool
, intltool
, fetchFromGitHub
}:
2020-12-15 04:40:11 +00:00
stdenv.mkDerivation rec {
pname = "ddccontrol-db";
2022-09-04 13:11:22 +00:00
version = "20220903";
2020-12-15 04:40:11 +00:00
src = fetchFromGitHub {
owner = "ddccontrol";
repo = "ddccontrol-db";
2020-12-15 04:40:11 +00:00
rev = version;
2022-09-04 13:11:22 +00:00
sha256 = "sha256-OmroJ2AEQdELE2Wuk1qPXzp+/9RUUULrEAdEpmXrJxw=";
};
preConfigure = ''
./autogen.sh
'';
nativeBuildInputs = [ autoconf automake intltool ];
buildInputs =
[
libtool
];
meta = with lib; {
description = "Monitor database for DDCcontrol";
homepage = "https://github.com/ddccontrol/ddccontrol-db";
license = licenses.gpl2;
platforms = platforms.linux;
2021-01-15 07:29:18 +00:00
maintainers = [ lib.maintainers.pakhfn ];
};
}