Advertisement
Guest User

Untitled

a guest
May 18th, 2018
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. default.nix:
  2.  
  3. # This file was generated by https://github.com/kamilchm/go2nix v1.2.1
  4. { stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
  5.  
  6. buildGoPackage rec {
  7. name = "antibody-unstable-${version}";
  8. version = "2018-05-15";
  9. rev = "5c60b1e561eff385a4ea3a52f3fdbf31c3940e18";
  10.  
  11. goPackagePath = "github.com/getantibody/antibody";
  12.  
  13. src = fetchgit {
  14. inherit rev;
  15. url = "https://github.com/getantibody/antibody";
  16. sha256 = "0pvsngvlxv5iw7yj18snslag8c61ji4w3j3rw543ckl6k3f9zq6c";
  17. };
  18.  
  19. goDeps = ./deps.nix;
  20.  
  21. # TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
  22. meta = {
  23. };
  24. }
  25.  
  26. deps.nix:
  27.  
  28. # This file was generated by https://github.com/kamilchm/go2nix v1.2.1
  29. [
  30. {
  31. goPackagePath = "github.com/alecthomas/kingpin";
  32. fetch = {
  33. type = "git";
  34. url = "https://github.com/alecthomas/kingpin";
  35. rev = "a39589180ebd6bbf43076e514b55f20a95d43086";
  36. sha256 = "0b00bfiwl76qflnmnk3cnlaii6wxgzzdnby99cxdych4f8qmzlv3";
  37. };
  38. }
  39. {
  40. goPackagePath = "github.com/alecthomas/template";
  41. fetch = {
  42. type = "git";
  43. url = "https://github.com/alecthomas/template";
  44. rev = "a0175ee3bccc567396460bf5acd36800cb10c49c";
  45. sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj";
  46. };
  47. }
  48. {
  49. goPackagePath = "github.com/alecthomas/units";
  50. fetch = {
  51. type = "git";
  52. url = "https://github.com/alecthomas/units";
  53. rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a";
  54. sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl";
  55. };
  56. }
  57. {
  58. goPackagePath = "github.com/caarlos0/gohome";
  59. fetch = {
  60. type = "git";
  61. url = "https://github.com/caarlos0/gohome";
  62. rev = "c08fdebe2a8b9b92637a423c66ac5d4a8f4e91e8";
  63. sha256 = "1wpg7dpi44kic4y20bk6fjwpanm65h1hj4762dsp41kbdfzc8322";
  64. };
  65. }
  66. {
  67. goPackagePath = "github.com/getantibody/folder";
  68. fetch = {
  69. type = "git";
  70. url = "https://github.com/getantibody/folder";
  71. rev = "e65aa38ebeb03e6d6e91b90a637f3b7c17e1b6d6";
  72. sha256 = "0h8al3sl4gxg1p33s8jrz91i7vrqahk12p0b3srlhnz1sn4ahn8n";
  73. };
  74. }
  75. {
  76. goPackagePath = "golang.org/x/crypto";
  77. fetch = {
  78. type = "git";
  79. url = "https://go.googlesource.com/crypto";
  80. rev = "1a580b3eff7814fc9b40602fd35256c63b50f491";
  81. sha256 = "11adgxc6fzcb3dxr5v2g4nk6ggrz04qnx633hzgmzfh2wv3blgv7";
  82. };
  83. }
  84. {
  85. goPackagePath = "golang.org/x/net";
  86. fetch = {
  87. type = "git";
  88. url = "https://go.googlesource.com/net";
  89. rev = "2491c5de3490fced2f6cff376127c667efeed857";
  90. sha256 = "1wmijnrxi9p2rv8g6clqkzdihn5ncv29j0s4s1bz9ksncdr36ll3";
  91. };
  92. }
  93. {
  94. goPackagePath = "golang.org/x/sync";
  95. fetch = {
  96. type = "git";
  97. url = "https://go.googlesource.com/sync";
  98. rev = "1d60e4601c6fd243af51cc01ddf169918a5407ca";
  99. sha256 = "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6";
  100. };
  101. }
  102. {
  103. goPackagePath = "golang.org/x/sys";
  104. fetch = {
  105. type = "git";
  106. url = "https://go.googlesource.com/sys";
  107. rev = "7c87d13f8e835d2fb3a70a2912c811ed0c1d241b";
  108. sha256 = "03fhkng37rczqwfgah5hd7d373jps3hcfx79dmky2fh62yvpcyn3";
  109. };
  110. }
  111. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement