nixpkgs/pkgs/shells/murex/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
673 B
Nix
Raw Normal View History

2022-08-24 13:39:18 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "murex";
2024-06-27 14:08:41 +00:00
version = "6.1.8300";
2022-08-24 13:39:18 +00:00
src = fetchFromGitHub {
owner = "lmorg";
repo = pname;
rev = "v${version}";
2024-06-27 14:08:41 +00:00
sha256 = "sha256-16eaPxmTauuttpjHUSQlBu/d/S3CWKgQYttqQWp0lkU=";
2022-08-24 13:39:18 +00:00
};
2024-06-27 14:08:41 +00:00
vendorHash = "sha256-/qK7Zgdz48vmz+tIMZmo1M5Glr842fOCinMoLAeQasg=";
2022-08-24 13:39:18 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "Bash-like shell and scripting environment with advanced features designed for safety and productivity";
mainProgram = "murex";
2022-08-24 13:39:18 +00:00
homepage = "https://murex.rocks";
2024-05-23 08:38:09 +00:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ dit7ya kashw2 ];
2022-08-24 13:39:18 +00:00
};
}