3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/vgo2nix/default.nix

42 lines
947 B
Nix
Raw Normal View History

2018-10-22 08:43:49 +01:00
{ stdenv
, lib
, buildGoPackage
, go
, makeWrapper
, nix-prefetch-git
, fetchFromGitHub
}:
2019-08-13 22:52:01 +01:00
buildGoPackage {
pname = "vgo2nix";
version = "unstable-2020-05-05";
2018-10-22 08:43:49 +01:00
goPackagePath = "github.com/adisbladis/vgo2nix";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
owner = "nix-community";
2018-10-22 08:43:49 +01:00
repo = "vgo2nix";
rev = "71e59bf268d5257a0f89b2f59cd20fd468c8c6ac";
sha256 = "1pcdkknq2v7nrs0siqcvvq2x0qqz5snwdz2lpjnad8i33rwhmayh";
2018-10-22 08:43:49 +01:00
};
goDeps = ./deps.nix;
allowGoReference = true;
postInstall = with stdenv; let
binPath = lib.makeBinPath [ nix-prefetch-git go ];
in ''
wrapProgram $out/bin/vgo2nix --prefix PATH : ${binPath}
2018-10-22 08:43:49 +01:00
'';
meta = with stdenv.lib; {
description = "Convert go.mod files to nixpkgs buildGoPackage compatible deps.nix files";
homepage = "https://github.com/nix-community/vgo2nix";
2018-10-22 08:43:49 +01:00
license = licenses.mit;
maintainers = with maintainers; [ adisbladis ];
};
}