mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
godep: remove in favor of dep
upstream deprecated this and recommend dep
This commit is contained in:
parent
5fb1cfb77b
commit
5feb8d3a9b
@ -1,30 +0,0 @@
|
||||
{ stdenv, lib, go, fetchurl, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "73";
|
||||
name = "godep-${version}";
|
||||
|
||||
src = import ./deps.nix {
|
||||
inherit stdenv lib fetchgit;
|
||||
};
|
||||
|
||||
buildInputs = [ go ];
|
||||
|
||||
buildPhase = ''
|
||||
export GOPATH=$src
|
||||
go build -v -o godep github.com/tools/godep
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv godep $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Dependency tool for go";
|
||||
homepage = https://github.com/tools/godep;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
67
pkgs/development/tools/godep/deps.nix
generated
67
pkgs/development/tools/godep/deps.nix
generated
@ -1,67 +0,0 @@
|
||||
# This file was generated by go2nix.
|
||||
{ stdenv, lib, fetchgit }:
|
||||
|
||||
let
|
||||
goDeps = [
|
||||
{
|
||||
root = "github.com/kr/fs";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/kr/fs.git";
|
||||
rev = "2788f0dbd16903de03cb8186e5c7d97b69ad387b";
|
||||
sha256 = "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly";
|
||||
};
|
||||
}
|
||||
{
|
||||
root = "github.com/tools/godep";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/tools/godep.git";
|
||||
rev = "f4edf338389e6e2bde0e8307886718133dc0613e";
|
||||
sha256 = "1jdza8kwnzdsh3layqjzy9dnr92xdg3kfhnzvqkq3p50vsdims9w";
|
||||
};
|
||||
}
|
||||
{
|
||||
root = "github.com/kr/pretty";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/kr/pretty";
|
||||
rev = "f31442d60e51465c69811e2107ae978868dbea5c";
|
||||
sha256 = "12nczwymikxmivb10q5ml5yxrwpz9s8p6k4vqig9g9707yhpxrkh";
|
||||
};
|
||||
}
|
||||
{
|
||||
root = "github.com/kr/text";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/kr/text";
|
||||
rev = "6807e777504f54ad073ecef66747de158294b639";
|
||||
sha256 = "1wkszsg08zar3wgspl9sc8bdsngiwdqmg3ws4y0bh02sjx5a4698";
|
||||
};
|
||||
}
|
||||
{
|
||||
root = "github.com/pmezard/go-difflib";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/pmezard/go-difflib";
|
||||
rev = "f78a839676152fd9f4863704f5d516195c18fc14";
|
||||
sha256 = "1bws3qyy572b62i3wkwfr1aw1g2nwcim2sy42jqsvh9pajjsf1vz";
|
||||
};
|
||||
}
|
||||
{
|
||||
root = "golang.org/x/tools";
|
||||
src = fetchgit {
|
||||
url = "https://go.googlesource.com/tools";
|
||||
rev = "1f1b3322f67af76803c942fd237291538ec68262";
|
||||
sha256 = "0h2yarcvcgg1px20r8n58psra1czv0sgly5gins2q3wp25iql6gj";
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "go-deps";
|
||||
|
||||
buildCommand =
|
||||
lib.concatStrings
|
||||
(map (dep: ''
|
||||
mkdir -p $out/src/`dirname ${dep.root}`
|
||||
ln -s ${dep.src} $out/src/${dep.root}
|
||||
'') goDeps);
|
||||
}
|
@ -13890,8 +13890,6 @@ with pkgs;
|
||||
|
||||
golint = callPackage ../development/tools/golint { };
|
||||
|
||||
godep = callPackage ../development/tools/godep { };
|
||||
|
||||
godef = callPackage ../development/tools/godef { };
|
||||
|
||||
goimports = callPackage ../development/tools/goimports { };
|
||||
|
Loading…
Reference in New Issue
Block a user