2019-11-10 09:59:05 +03:00
|
|
|
{ stdenv, buildGoPackage, fetchgit, lib }:
|
2016-06-03 19:52:46 +03:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "oh";
|
2016-06-03 19:52:46 +03:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2016-09-10 13:04:13 +03:00
|
|
|
goDeps = ./deps.nix;
|
2019-11-10 09:59:05 +03:00
|
|
|
|
|
|
|
meta = with lib;{
|
|
|
|
homepage = "https://github.com/michaelmacinnis/oh";
|
|
|
|
description = "A Unix shell";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
2016-06-03 19:52:46 +03:00
|
|
|
}
|