2021-07-14 22:03:04 +00:00
|
|
|
{ lib
|
2022-10-21 18:38:19 +00:00
|
|
|
, stdenvNoCC
|
2021-07-14 22:03:04 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
stdenvNoCC.mkDerivation (finalPackages: {
|
2021-07-14 22:03:04 +00:00
|
|
|
pname = "pipeworld";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "unstable-2023-03-02";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "letoram";
|
2022-08-12 12:06:08 +00:00
|
|
|
repo = "pipeworld";
|
2023-10-19 13:55:26 +00:00
|
|
|
rev = "9ea79f72ad500fe78b9f46e680be87eaac3bfb0e";
|
|
|
|
hash = "sha256-/cjse6XXrdLoUB35GLgl871qINOm4SvKPTbfoBceLu0=";
|
2021-07-14 22:03:04 +00:00
|
|
|
};
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
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;
|
|
|
|
};
|
2022-08-12 12:06:08 +00:00
|
|
|
})
|