nixpkgs/pkgs/development/tools/vgo2nix/default.nix

42 lines
953 B
Nix
Raw Normal View History

2018-10-22 07:43:49 +00:00
{ stdenv
, lib
, buildGoPackage
, go
, makeWrapper
, nix-prefetch-git
, fetchFromGitHub
}:
buildGoPackage rec {
name = "vgo2nix-${version}";
2019-03-12 10:37:09 +00:00
version = "unstable-2019-02-06";
2018-10-22 07:43:49 +00:00
goPackagePath = "github.com/adisbladis/vgo2nix";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
owner = "adisbladis";
repo = "vgo2nix";
2019-03-12 10:37:09 +00:00
rev = "f2694cd352830f0561bc00bbcaa08cefb2e36439";
sha256 = "10cwi67cyhqjq1pwhry2n1v8z7wybl4cawzmjmfgs5mbsvqp0h78";
2018-10-22 07:43:49 +00:00
};
goDeps = ./deps.nix;
allowGoReference = true;
postInstall = with stdenv; let
binPath = lib.makeBinPath [ nix-prefetch-git go ];
in ''
wrapProgram $bin/bin/vgo2nix --prefix PATH : ${binPath}
'';
meta = with stdenv.lib; {
description = "Convert go.mod files to nixpkgs buildGoPackage compatible deps.nix files";
homepage = https://github.com/adisbladis/vgo2nix;
license = licenses.mit;
maintainers = with maintainers; [ adisbladis ];
};
}