mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 09:56:13 +03:00
Merge pull request #84938 from doronbehar/package-gjo
gjo: init at 1.0.2
This commit is contained in:
commit
77cb7ad618
28
pkgs/tools/text/gjo/default.nix
Normal file
28
pkgs/tools/text/gjo/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "gjo";
|
||||||
|
version = "1.0.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "skanehira";
|
||||||
|
repo = "gjo";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1m5nkv42ri150fgj590nrl24wp90p7ygg9xdh9zblibmnqrvbz4z";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
modSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Small utility to create JSON objects";
|
||||||
|
homepage = "https://github.com/skanehira/gjo";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ doronbehar ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -948,6 +948,8 @@ in
|
|||||||
|
|
||||||
gjs = callPackage ../development/libraries/gjs { };
|
gjs = callPackage ../development/libraries/gjs { };
|
||||||
|
|
||||||
|
gjo = callPackage ../tools/text/gjo { };
|
||||||
|
|
||||||
glances = python3Packages.callPackage ../applications/system/glances { };
|
glances = python3Packages.callPackage ../applications/system/glances { };
|
||||||
|
|
||||||
glasgow = with python3Packages; toPythonApplication glasgow;
|
glasgow = with python3Packages; toPythonApplication glasgow;
|
||||||
|
Loading…
Reference in New Issue
Block a user