mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
28 lines
642 B
Nix
28 lines
642 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "murex";
|
|
version = "5.3.7000";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lmorg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wXpiJQ/9A45cmi0v5ZAgOCBvK86fqiOe9G8zOVCetBg=";
|
|
};
|
|
|
|
vendorHash = "sha256-qOItRqCIxoHigufI6b7j2VdBDo50qGDe+LAaccgDh5w=";
|
|
|
|
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 kashw2 ];
|
|
};
|
|
}
|