about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/wayland/swaycwd
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/wayland/swaycwd')
-rw-r--r--nixpkgs/pkgs/tools/wayland/swaycwd/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix b/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix
new file mode 100644
index 000000000000..9214f38b3303
--- /dev/null
+++ b/nixpkgs/pkgs/tools/wayland/swaycwd/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, nimPackages
+, fetchFromGitLab
+, enableShells ? [ "bash" "zsh" "fish" "sh" "posh" ]
+}:
+nimPackages.buildNimPackage rec{
+  pname = "swaycwd";
+  version = "0.0.2";
+
+  src = fetchFromGitLab {
+    owner = "cab404";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-OZWOPtOqcX+fVQCxWntrn98EzFu70WH55rfYCPDMSKk=";
+  };
+
+  preConfigure = ''
+    {
+      echo 'let enabledShells: seq[string] = @${builtins.toJSON enableShells}'
+      echo 'export enabledShells'
+    } > shells.nim
+    cat << EOF > swaycwd.nimble
+    srcDir = "."
+    bin = "swaycwd"
+    EOF
+  '';
+
+  nimFlags = [ "--opt:speed" ];
+
+  meta = with lib; {
+    homepage = "https://gitlab.com/cab404/swaycwd";
+    description = "Returns cwd for shell in currently focused sway window, or home directory if cannot find shell";
+    maintainers = with maintainers; [ cab404 ];
+    platforms = platforms.linux;
+    license = licenses.gpl3Only;
+  };
+}