mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
32 lines
724 B
Nix
32 lines
724 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "murex";
|
|
version = "6.2.4000";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lmorg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-CgbbbFFsY6zBwS4GeZk5DuHWibRIewvQ1CnvuvTFaSU=";
|
|
};
|
|
|
|
vendorHash = "sha256-/qK7Zgdz48vmz+tIMZmo1M5Glr842fOCinMoLAeQasg=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "Bash-like shell and scripting environment with advanced features designed for safety and productivity";
|
|
mainProgram = "murex";
|
|
homepage = "https://murex.rocks";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ dit7ya kashw2 ];
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/murex";
|
|
};
|
|
}
|