summary refs log tree commit diff
path: root/pkgs/development/tools/godep/deps.nix
blob: 10071fa51955556988c1a9091269265336c364cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# 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);
}