nixpkgs/pkgs/tools/text/gjo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
527 B
Nix
Raw Normal View History

{ lib
2020-04-10 20:47:13 +00:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gjo";
2020-04-23 04:40:46 +00:00
version = "1.0.3";
2020-04-10 20:47:13 +00:00
src = fetchFromGitHub {
owner = "skanehira";
repo = "gjo";
rev = version;
2023-09-12 13:44:08 +00:00
hash = "sha256-vEk5MZqwAMgqMLjwRJwnbx8nVyF3U2iUz0S3L0GmCh4=";
2020-04-10 20:47:13 +00:00
};
2023-09-12 13:44:08 +00:00
vendorHash = null;
2020-04-10 20:47:13 +00:00
meta = with lib; {
2020-04-10 20:47:13 +00:00
description = "Small utility to create JSON objects";
mainProgram = "gjo";
2020-04-10 20:47:13 +00:00
homepage = "https://github.com/skanehira/gjo";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
}