about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-11-26 20:24:11 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-12-05 23:04:47 -0300
commitc836ec1597e3de3f011daccd955cbeea6547d037 (patch)
treed4fd4d9ba235cd1e7713ea1f843240c1d2865084 /pkgs/desktops
parentd220a1ce0ccf96c98569ad2962778f01a735c198 (diff)
pipeworld: migrate to by-name
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/arcan/pipeworld/default.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkgs/desktops/arcan/pipeworld/default.nix b/pkgs/desktops/arcan/pipeworld/default.nix
deleted file mode 100644
index 9474535133fdb..0000000000000
--- a/pkgs/desktops/arcan/pipeworld/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ lib
-, stdenvNoCC
-, fetchFromGitHub
-}:
-
-stdenvNoCC.mkDerivation (finalPackages: {
-  pname = "pipeworld";
-  version = "unstable-2023-03-02";
-
-  src = fetchFromGitHub {
-    owner = "letoram";
-    repo = "pipeworld";
-    rev = "9ea79f72ad500fe78b9f46e680be87eaac3bfb0e";
-    hash = "sha256-/cjse6XXrdLoUB35GLgl871qINOm4SvKPTbfoBceLu0=";
-  };
-
-  dontConfigure = true;
-
-  dontBuild = true;
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p ${placeholder "out"}/share/arcan/appl/
-    cp -a ./pipeworld ${placeholder "out"}/share/arcan/appl/
-
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    homepage = "https://github.com/letoram/pipeworld";
-    description = "Dataflow 'spreadsheet' desktop environment";
-    longDescription = ''
-      Pipeworld is a zooming dataflow tool and desktop heavily inspired by
-      userland. It is built using the arcan desktop engine.
-
-      It combines the programmable processing of shell scripts and pipes, the
-      interactive visual addressing/programming model of spread sheets, the
-      scenegraph- and interactive controls-, IPC- and client processing- of
-      display servers into one model with zoomable tiling window management.
-
-      It can be used as a standalone desktop of its own, or as a normal
-      application within another desktop as a 'substitute' for your normal
-      terminal emulator.
-    '';
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.all;
-  };
-})