2022-08-24 16:39:18 +03:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "murex";
|
2024-01-07 21:32:13 +03:00
|
|
|
version = "5.3.7000";
|
2022-08-24 16:39:18 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lmorg";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-01-07 21:32:13 +03:00
|
|
|
sha256 = "sha256-wXpiJQ/9A45cmi0v5ZAgOCBvK86fqiOe9G8zOVCetBg=";
|
2022-08-24 16:39:18 +03:00
|
|
|
};
|
|
|
|
|
2023-11-21 22:47:39 +03:00
|
|
|
vendorHash = "sha256-qOItRqCIxoHigufI6b7j2VdBDo50qGDe+LAaccgDh5w=";
|
2022-08-24 16:39:18 +03:00
|
|
|
|
|
|
|
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;
|
2023-08-21 05:44:08 +03:00
|
|
|
maintainers = with maintainers; [ dit7ya kashw2 ];
|
2022-08-24 16:39:18 +03:00
|
|
|
};
|
|
|
|
}
|