2019-11-06 18:33:02 +01:00
|
|
|
{stdenv, fetchFromGitHub, autoreconfHook, pandoc, pkgconfig}:
|
2016-03-11 12:37:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-06 12:17:04 +02:00
|
|
|
pname = "jo";
|
2019-11-06 18:33:02 +01:00
|
|
|
version = "1.3";
|
2016-03-11 12:37:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-05-06 12:17:04 +02:00
|
|
|
owner = "jpmens";
|
2016-03-11 12:37:23 +01:00
|
|
|
repo = "jo";
|
2019-05-06 12:17:04 +02:00
|
|
|
rev = version;
|
2019-11-06 18:33:02 +01:00
|
|
|
sha256 ="11miqg0i83drwkn66b4333vhfdw62al11dyfgp30alg6pcab3icl";
|
2016-03-11 12:37:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-11-06 18:33:02 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pandoc pkgconfig ];
|
2016-03-11 12:37:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A small utility to create JSON objects";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jpmens/jo";
|
2016-03-11 12:37:23 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [maintainers.markus1189];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|