summary refs log blame commit diff
path: root/pkgs/development/tools/go2nix/default.nix
blob: 26458a3ca2ef5e2f83a37900e8090a719f7688aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                  
                    
 
                    
                   
                    
                      


                                               
                         
                

                       
                                                                    

    
                      
 

                                  
                                                   





                                               


                                        


                          
 

                                            





                                                  
 
{ stdenv, buildGoPackage, go-bindata, gotools, nix-prefetch-git, git, makeWrapper,
  fetchFromGitHub }:

buildGoPackage rec {
  pname = "go2nix";
  version = "1.3.0";
  rev = "v${version}";

  goPackagePath = "github.com/kamilchm/go2nix";

  src = fetchFromGitHub {
    inherit rev;
    owner = "kamilchm";
    repo = "go2nix";
    sha256 = "1q61mgngvyl2bnmrqahh3bji402n76c7xwv29lwk007gymzgff0n";
  };

  goDeps = ./deps.nix;

  outputs = [ "bin" "out" "man" ];

  buildInputs = [ go-bindata gotools makeWrapper ];
  preBuild = ''go generate ./...'';

  postInstall = ''
    wrapProgram $bin/bin/go2nix \
      --prefix PATH : ${nix-prefetch-git}/bin \
      --prefix PATH : ${git}/bin

    mkdir -p $man/share/man/man1
    cp $src/go2nix.1 $man/share/man/man1
  '';

  allowGoReference = true;

  doCheck = false; # tries to access the net

  meta = with stdenv.lib; {
    description = "Go apps packaging for Nix";
    homepage = https://github.com/kamilchm/go2nix;
    license = licenses.mit;
    maintainers = with maintainers; [ kamilchm ];
  };
}