mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
620 B
Nix
27 lines
620 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "easyjson";
|
|
version = "0.7.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mailru";
|
|
repo = "easyjson";
|
|
rev = "v${version}";
|
|
sha256 = "0clifkvvy8f45rv3cdyv58dglzagyvfcqb63wl6rij30c5j2pzc1";
|
|
};
|
|
vendorHash = "sha256-L8u7QQPE2SnskcRrSIwQ4KhsX9xncqDWXJ75ytjxLJ4=";
|
|
|
|
subPackages = [ "easyjson" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mailru/easyjson";
|
|
description = "Fast JSON serializer for Go";
|
|
mainProgram = "easyjson";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Madouura ];
|
|
};
|
|
}
|