Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 24 lines 606 B view raw
1{ fetchFromGitHub, lib, stdenv, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "dotconf"; 5 version = "1.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "williamh"; 9 repo = "dotconf"; 10 rev = "v${version}"; 11 sha256 = "sha256-6Du26Ffz08DLGg6uIiPi8Sgjf691MM2kn0qXe3oFeTw="; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = [ ]; 16 17 meta = with lib; { 18 description = "Configuration parser library"; 19 maintainers = with maintainers; [ pSub ]; 20 homepage = "https://github.com/williamh/dotconf"; 21 license = licenses.lgpl21Plus; 22 platforms = with platforms; unix; 23 }; 24}