nixpkgs/pkgs/shells/oh/default.nix

18 lines
476 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
2016-06-03 16:52:46 +00:00
buildGoPackage rec {
name = "oh-${version}";
version = "20160522-${stdenv.lib.strings.substring 0 7 rev}";
rev = "0daaf4081475fb9d6b3801c85019bdd57b2ee9b4";
goPackagePath = "github.com/michaelmacinnis/oh";
src = fetchgit {
inherit rev;
url = "https://github.com/michaelmacinnis/oh";
sha256 = "0ajidzs0aisbw74nri9ks6sx6644nmwkisc9mvxm3f89zmnlsgwr";
};
goDeps = ./deps.nix;
2016-06-03 16:52:46 +00:00
}