Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 27 lines 608 B view raw
1{ lib, stdenv 2, autoreconfHook 3, intltool 4, fetchFromGitHub 5}: 6 7stdenv.mkDerivation rec { 8 pname = "ddccontrol-db"; 9 version = "20230424"; 10 11 src = fetchFromGitHub { 12 owner = "ddccontrol"; 13 repo = pname; 14 rev = version; 15 sha256 = "sha256-qi6dDh6Zk1GpHBpQ+aatAmG9lCdesnJRhK3jVjKYKcQ="; 16 }; 17 18 nativeBuildInputs = [ autoreconfHook intltool ]; 19 20 meta = with lib; { 21 description = "Monitor database for DDCcontrol"; 22 homepage = "https://github.com/ddccontrol/ddccontrol-db"; 23 license = licenses.gpl2; 24 platforms = platforms.linux; 25 maintainers = [ lib.maintainers.pakhfn ]; 26 }; 27}