depot/third_party/nixpkgs/pkgs/shells/oh/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
570 B
Nix

{ buildGoPackage, fetchgit, lib }:
buildGoPackage rec {
pname = "oh";
version = "20160522-${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 = lib.licenses.mit;
};
}