2021-07-03 04:46:21 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2022-08-04 01:47:02 +01:00
|
|
|
stdenv.mkDerivation (finalPackages: {
|
2021-07-03 04:46:21 +01:00
|
|
|
pname = "pipeworld";
|
2022-08-04 01:47:02 +01:00
|
|
|
version = "unstable-2022-04-03";
|
2021-07-03 04:46:21 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "letoram";
|
2022-08-04 01:47:02 +01:00
|
|
|
repo = "pipeworld";
|
2022-05-07 19:00:55 +01:00
|
|
|
rev = "f60d0b93fcd5462f47b1c928c109f5b4cbd74eef";
|
|
|
|
hash = "sha256-PNziP5LaUODZwtAHvg8uYt/EyoD3mB5aWIfp7n5a82E=";
|
2021-07-03 04:46:21 +01:00
|
|
|
};
|
|
|
|
|
2022-03-16 02:30:39 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
2021-07-03 04:46:21 +01: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-04 01:47:02 +01:00
|
|
|
})
|