about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/arcan/durden/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/desktops/arcan/durden/default.nix b/pkgs/desktops/arcan/durden/default.nix
deleted file mode 100644
index f6677b9823ffb..0000000000000
--- a/pkgs/desktops/arcan/durden/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, stdenvNoCC
-, fetchFromGitHub
-}:
-
-stdenvNoCC.mkDerivation (finalAttrs: {
-  pname = "durden";
-  version = "unstable-2023-08-11";
-
-  src = fetchFromGitHub {
-    owner = "letoram";
-    repo = "durden";
-    rev = "728d7fc3292cc162b1cea505c8a71512b2e84925";
-    hash = "sha256-UL36JeppnoFDdzdsJMsWKJL58ioz9eOaNEZp/7DGV9w=";
-  };
-
-  dontConfigure = true;
-
-  dontBuild = true;
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p ${placeholder "out"}/share/arcan/appl/
-    cp -a ./durden ${placeholder "out"}/share/arcan/appl/
-
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    homepage = "https://durden.arcan-fe.com/";
-    description = "Reference Desktop Environment for Arcan";
-    longDescription = ''
-      Durden is a desktop environment for the Arcan Display Server. It serves
-      both as a reference showcase on how to take advantage of some of the
-      features in Arcan, and as a very competent entry to the advanced-user side
-      of the desktop environment spectrum.
-    '';
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.all;
-  };
-})