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

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

26 lines
507 B
Nix
Raw Normal View History

{ lib
2020-04-10 22:47:13 +02:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gjo";
2020-04-23 06:40:46 +02:00
version = "1.0.3";
2020-04-10 22:47:13 +02:00
src = fetchFromGitHub {
owner = "skanehira";
repo = "gjo";
rev = version;
2020-04-23 06:40:46 +02:00
sha256 = "07halr0jzds4rya6hlvp45bjf7vg4yf49w5q60mch05hk8qkjjdw";
2020-04-10 22:47:13 +02:00
};
2021-06-12 17:49:54 +02:00
vendorSha256 = null;
2020-04-10 22:47:13 +02:00
meta = with lib; {
2020-04-10 22:47:13 +02:00
description = "Small utility to create JSON objects";
homepage = "https://github.com/skanehira/gjo";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
}