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
635 B
Nix
Raw Normal View History

2022-08-24 13:39:18 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "murex";
2023-07-26 12:11:47 +00:00
version = "4.4.9100";
2022-08-24 13:39:18 +00:00
src = fetchFromGitHub {
owner = "lmorg";
repo = pname;
rev = "v${version}";
2023-07-26 12:11:47 +00:00
sha256 = "sha256-3YXRjwDEJC4rZdvrgj8Hp8oD+4NN5LOUJmM/9bjwfQw=";
2022-08-24 13:39:18 +00:00
};
2023-05-20 02:49:29 +00:00
vendorHash = "sha256-eQfffqNxt6es/3/H59FC5mLn1IU3oMpY/quzgNOgOaU=";
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";
homepage = "https://murex.rocks";
license = licenses.gpl2;
maintainers = with maintainers; [ dit7ya ];
};
}