mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
fastgron: init at 0.6.2
This commit is contained in:
parent
91d311b988
commit
7db362f221
30
pkgs/development/tools/fastgron/default.nix
Normal file
30
pkgs/development/tools/fastgron/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, curl, testers }:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "fastgron";
|
||||
version = "0.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "adamritter";
|
||||
repo = "fastgron";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-SqJdJnepfX/qHiACjpaTNM+/lApcADCCbcX+BNgXswg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ curl ];
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = finalAttrs.finalPackage;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/adamritter/fastgron/releases/tag/${finalAttrs.src.rev}";
|
||||
description = "High-performance JSON to GRON (greppable, flattened JSON) converter";
|
||||
homepage = "https://github.com/adamritter/fastgron";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zowoq ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
@ -18722,6 +18722,8 @@ with pkgs;
|
||||
|
||||
fastddsgen = callPackage ../development/tools/fastddsgen { };
|
||||
|
||||
fastgron = callPackage ../development/tools/fastgron { };
|
||||
|
||||
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
||||
|
||||
findnewest = callPackage ../development/tools/misc/findnewest { };
|
||||
|
Loading…
Reference in New Issue
Block a user