3
0
Fork 0
forked from mirrors/nixpkgs

murex: init at 2.10.2400

This commit is contained in:
Mostly Void 2022-08-24 19:09:18 +05:30
parent cd907d4b84
commit 709c27676c
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
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

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