summary refs log blame commit diff
path: root/pkgs/shells/oh/default.nix
blob: e9a09c8c288809aa04160344cf6a08bc178a320f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        
 
                   
               
                    
 



                              
                                                                   

    
                                                                       
 
                    
                                                       





                                     
    
 
{ 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";
  };
}