aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/shells/oh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/oh/default.nix')
-rw-r--r--nixpkgs/pkgs/shells/oh/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/shells/oh/default.nix b/nixpkgs/pkgs/shells/oh/default.nix
new file mode 100644
index 00000000000..3ae8a7c600a
--- /dev/null
+++ b/nixpkgs/pkgs/shells/oh/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildGoPackage, fetchgit, lib }:
+
+buildGoPackage rec {
+ pname = "oh";
+ 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;
+
+ meta = with lib;{
+ homepage = "https://github.com/michaelmacinnis/oh";
+ description = "A Unix shell";
+ license = stdenv.lib.licenses.mit;
+ };
+}