nixpkgs/pkgs/shells/murex/default.nix

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

28 lines
638 B
Nix
Raw Normal View History

2022-08-24 16:39:18 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "murex";
2022-10-07 00:01:04 +03:00
version = "2.11.2200";
2022-08-24 16:39:18 +03:00
src = fetchFromGitHub {
owner = "lmorg";
repo = pname;
rev = "v${version}";
2022-10-07 00:01:04 +03:00
sha256 = "sha256-nyrZttTOWpr7rBc2Ks04cWMGZFmd7lVIz6mHa0m+dDE=";
2022-08-24 16:39:18 +03:00
};
vendorSha256 = "sha256-hLz36ESf6To6sT/ha/yXyhG0U1gGw8HDfnrPJnws25g=";
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 ];
};
}