about summary refs log tree commit diff
path: root/pkgs/shells/murex
diff options
context:
space:
mode:
authorMostly Void <7rat13@gmail.com>2022-08-24 19:09:18 +0530
committerMostly Void <7rat13@gmail.com>2022-08-24 19:10:12 +0530
commit709c27676cc468e22b12eb501b2fbd4e0e0c7128 (patch)
tree010c359e2d553496227e2eb7dd0e883e41baa0f5 /pkgs/shells/murex
parentcd907d4b84c7bd6a0bbdf89a8695a65101da5fb4 (diff)
murex: init at 2.10.2400
Diffstat (limited to 'pkgs/shells/murex')
-rw-r--r--pkgs/shells/murex/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/shells/murex/default.nix b/pkgs/shells/murex/default.nix
new file mode 100644
index 0000000000000..bbeb5d9b98377
--- /dev/null
+++ b/pkgs/shells/murex/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "murex";
+  version = "2.10.2400";
+
+  src = fetchFromGitHub {
+    owner = "lmorg";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0bqd91m7m4i4lfvz4p1lbrfs01kyh73p0g236q13bv4x1n1lkqr3";
+  };
+
+  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 ];
+  };
+}