nixpkgs/pkgs/shells/oh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
543 B
Nix
Raw Normal View History

2021-03-01 04:20:00 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
2016-06-03 16:52:46 +00:00
2021-03-01 04:20:00 +00:00
buildGoModule rec {
pname = "oh";
version = "0.8.1";
2016-06-03 16:52:46 +00:00
2021-03-01 04:20:00 +00:00
src = fetchFromGitHub {
owner = "michaelmacinnis";
repo = pname;
rev = "v${version}";
sha256 = "sha256-DMxC5fv5ZLDv7gMajC/eyJd2YpO+OXFdvwAPYotnczw=";
2016-06-03 16:52:46 +00:00
};
vendorHash = "sha256-f4rqXOu6yXUzNsseSaV9pb8c2KXItYOalB5pfH3Acnc=";
2019-11-10 06:59:05 +00:00
2021-03-01 04:20:00 +00:00
meta = with lib; {
2019-11-10 06:59:05 +00:00
homepage = "https://github.com/michaelmacinnis/oh";
2021-03-01 04:20:00 +00:00
description = "A new Unix shell";
license = licenses.mit;
};
passthru = {
shellPath = "/bin/oh";
2019-11-10 06:59:05 +00:00
};
2016-06-03 16:52:46 +00:00
}