mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
25 lines
545 B
Nix
25 lines
545 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "oh";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "michaelmacinnis";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DMxC5fv5ZLDv7gMajC/eyJd2YpO+OXFdvwAPYotnczw=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-f4rqXOu6yXUzNsseSaV9pb8c2KXItYOalB5pfH3Acnc=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/michaelmacinnis/oh";
|
|
description = "A new Unix shell";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/oh";
|
|
};
|
|
}
|