about summary refs log tree commit diff
path: root/pkgs/sternenseemann/shakti/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/sternenseemann/shakti/default.nix')
-rw-r--r--pkgs/sternenseemann/shakti/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/sternenseemann/shakti/default.nix b/pkgs/sternenseemann/shakti/default.nix
new file mode 100644
index 00000000..558588aa
--- /dev/null
+++ b/pkgs/sternenseemann/shakti/default.nix
@@ -0,0 +1,35 @@
+{ lib, stdenv, fetchurl, patchelf, rlwrap, makeWrapper }:
+
+stdenv.mkDerivation {
+  pname = "shakti";
+  version = "unstable-2021-01-29";
+
+  src = fetchurl {
+    url = "https://shakti.sh/linux/k?eula=shakti.com/license";
+    sha256 = "1a6pf5krb4qym7wvk48p37rdd3wl0igwa3kzp3swq346l07z9m5k";
+  };
+
+  dontUnpack = true;
+
+  nativeBuildInputs = [ patchelf makeWrapper ];
+
+  installPhase = ''
+    install -Dm755 $src $out/bin/k
+    patchelf \
+      --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+      $out/bin/k
+
+    makeWrapper "${rlwrap}/bin/rlwrap" "$out/bin/k-repl" \
+      --add-flags "$out/bin/k" --argv0 k-repl
+  '';
+
+  meta = with lib; {
+    homepage = "https://shakti.com";
+    description = "k9 programming language";
+    license = licenses.unfree;
+    # https://shakti.com/license
+    platforms = platforms.linux;
+    # hash breakes every few weeks
+    hydraPlatforms = [];
+  };
+}