2022-08-24 14:39:18 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "murex";
|
2024-08-01 07:36:21 +01:00
|
|
|
version = "6.2.4000";
|
2022-08-24 14:39:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lmorg";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-08-01 07:36:21 +01:00
|
|
|
sha256 = "sha256-CgbbbFFsY6zBwS4GeZk5DuHWibRIewvQ1CnvuvTFaSU=";
|
2022-08-24 14:39:18 +01:00
|
|
|
};
|
|
|
|
|
2024-06-27 15:08:41 +01:00
|
|
|
vendorHash = "sha256-/qK7Zgdz48vmz+tIMZmo1M5Glr842fOCinMoLAeQasg=";
|
2022-08-24 14:39:18 +01:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Bash-like shell and scripting environment with advanced features designed for safety and productivity";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "murex";
|
2022-08-24 14:39:18 +01:00
|
|
|
homepage = "https://murex.rocks";
|
2024-05-23 09:38:09 +01:00
|
|
|
license = licenses.gpl2Only;
|
2023-08-21 03:44:08 +01:00
|
|
|
maintainers = with maintainers; [ dit7ya kashw2 ];
|
2022-08-24 14:39:18 +01:00
|
|
|
};
|
|
|
|
}
|