Merge pull request #188177 from dit7ya/murex

This commit is contained in:
Sandro 2022-09-02 12:25:34 +02:00 committed by GitHub
commit 0ecf103e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "murex";
version = "2.10.2400";
src = fetchFromGitHub {
owner = "lmorg";
repo = pname;
rev = "v${version}";
sha256 = "0bqd91m7m4i4lfvz4p1lbrfs01kyh73p0g236q13bv4x1n1lkqr3";
};
vendorSha256 = "sha256-hLz36ESf6To6sT/ha/yXyhG0U1gGw8HDfnrPJnws25g=";
subPackages = [ "." ];
meta = with lib; {
description = "Bash-like shell and scripting environment with advanced features designed for safety and productivity";
homepage = "https://murex.rocks";
license = licenses.gpl2;
maintainers = with maintainers; [ dit7ya ];
};
}

View File

@ -12740,6 +12740,8 @@ with pkgs;
mksh = callPackage ../shells/mksh { };
murex = callPackage ../shells/murex { };
oh = callPackage ../shells/oh { };
oil = callPackage ../shells/oil { };