Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / shells / oh / default.nix
blob4504d6c86176cd76f7ebe7408baac42a0dcfab38
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "oh";
5   version = "0.8.3";
7   src = fetchFromGitHub {
8     owner = "michaelmacinnis";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-ryIh6MRIOVZPm2USpJC69Z/upIXGUHgcd17eZBA9Edc=";
12   };
14   vendorHash = "sha256-Qma5Vk0JO/tTrZanvTCE40LmjeCfBup3U3N7gyhfp44=";
16   meta = with lib; {
17     homepage = "https://github.com/michaelmacinnis/oh";
18     description = "A new Unix shell";
19     license = licenses.mit;
20   };
22   passthru = {
23     shellPath = "/bin/oh";
24   };