Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / shells / oh / default.nix
blob9a0308a70e75db93da3fef5a77fa16a1191d5dc3
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 = "New Unix shell";
19     mainProgram = "oh";
20     license = licenses.mit;
21   };
23   passthru = {
24     shellPath = "/bin/oh";
25   };