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

40 lines
714 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";
2021-08-05 05:16:00 +00:00
version = "20210804";
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;
2021-08-05 05:16:00 +00:00
sha256 = "sha256-+PTw4bDJhWyuEae5ShkIL/KvQ29+gU46iE2RdtTWb8M=";
};
preConfigure = ''
./autogen.sh
'';
buildInputs =
[
autoconf
automake
libtool
intltool
];
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 ];
};
}