nixpkgs/pkgs/development/compilers/go-jsonnet/default.nix

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

34 lines
804 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, testVersion }:
2019-04-30 20:13:15 +00:00
let self = buildGoModule rec {
pname = "go-jsonnet";
2021-12-30 14:22:51 +00:00
version = "0.18.0";
2019-04-30 20:13:15 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "go-jsonnet";
2019-11-30 04:15:24 +00:00
rev = "v${version}";
2021-12-30 14:22:51 +00:00
sha256 = "sha256-o/IjXskGaMhvQmTsAS745anGBMI2bwHf/EOEp57H8LU=";
2019-04-30 20:13:15 +00:00
};
2021-12-30 14:22:51 +00:00
vendorSha256 = "sha256-fZBhlZrLcC4xj5uvb862lBOczGnJa9CceS3D8lUhBQo=";
2019-11-30 04:15:24 +00:00
doCheck = false;
subPackages = [ "cmd/jsonnet*" ];
passthru.tests.version = testVersion {
package = self;
version = "v${version}";
};
2019-11-30 04:15:24 +00:00
meta = with lib; {
2019-04-30 20:13:15 +00:00
description = "An implementation of Jsonnet in pure Go";
2019-11-30 04:15:24 +00:00
homepage = "https://github.com/google/go-jsonnet";
license = licenses.asl20;
maintainers = with maintainers; [ nshalman aaronjheng ];
mainProgram = "jsonnet";
2019-04-30 20:13:15 +00:00
};
};
in self