depot/third_party/nixpkgs/pkgs/shells/murex/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

27 lines
642 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "murex";
version = "6.0.1000";
src = fetchFromGitHub {
owner = "lmorg";
repo = pname;
rev = "v${version}";
sha256 = "sha256-biwwNuCUgBNV//4/PYKf/n4HA69uiBEYFWVwspI1GG8=";
};
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 ];
};
}