Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{lib, stdenv, fetchFromGitHub, autoreconfHook, pandoc, pkg-config}: 2 3stdenv.mkDerivation rec { 4 pname = "jo"; 5 version = "1.9"; 6 7 src = fetchFromGitHub { 8 owner = "jpmens"; 9 repo = "jo"; 10 rev = version; 11 sha256 ="sha256-1q4/RpxfoAdtY3m8bBuj7bhD17V+4dYo3Vb8zMbI1YU="; 12 }; 13 14 enableParallelBuilding = true; 15 16 nativeBuildInputs = [ autoreconfHook pandoc pkg-config ]; 17 18 meta = with lib; { 19 description = "A small utility to create JSON objects"; 20 homepage = "https://github.com/jpmens/jo"; 21 license = licenses.gpl2Plus; 22 maintainers = [maintainers.markus1189]; 23 platforms = platforms.all; 24 }; 25}