about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authormdarocha <git@mdarocha.pl>2023-09-16 00:56:38 +0200
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-16 02:55:44 +0000
commitf773e7cf09f983fefca6733b0981e3037927c30d (patch)
tree10e436bc8a153ec414caa75949909c9cb7a1412f /pkgs/shells
parent056bce2350f8cdf639c316cf983d17ac9a9ef58d (diff)
pash: remove
The package is old and fully replaced by PowerShell
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/pash/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/shells/pash/default.nix b/pkgs/shells/pash/default.nix
deleted file mode 100644
index c9150fda18ae1..0000000000000
--- a/pkgs/shells/pash/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, fetchFromGitHub, buildDotnetPackage }:
-
-buildDotnetPackage {
-  pname = "pash";
-  version = "git-2016-07-06";
-
-  src = fetchFromGitHub {
-    owner = "Pash-Project";
-    repo = "Pash";
-    rev = "8d6a48f5ed70d64f9b49e6849b3ee35b887dc254";
-    sha256 = "0c4wa8qi1zs01p9ck171jkw0n1rsymsrhpsb42gl7warwhpmv59f";
-  };
-
-  strictDeps = true;
-  preConfigure = "rm -rvf $src/Source/PashConsole/bin/*";
-
-  outputFiles = [ "Source/PashConsole/bin/Release/*" ];
-
-  meta = with lib; {
-    description = "An open source implementation of Windows PowerShell";
-    homepage = "https://github.com/Pash-Project/Pash";
-    maintainers = [ maintainers.fornever maintainers.vrthra ];
-    platforms = platforms.all;
-    license = with licenses; [ bsd3 gpl3 ];
-  };
-
-  passthru = {
-    shellPath = "/bin/pash";
-  };
-}