Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 26 lines 649 B view raw
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 = "Small utility to create JSON objects"; 20 homepage = "https://github.com/jpmens/jo"; 21 mainProgram = "jo"; 22 license = licenses.gpl2Plus; 23 maintainers = [maintainers.markus1189]; 24 platforms = platforms.all; 25 }; 26}