2024-07-01 15:47:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenvNoCC,
|
|
|
|
fetchFromGitHub,
|
2021-07-14 22:03:04 +00:00
|
|
|
}:
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
2021-07-14 22:03:04 +00:00
|
|
|
pname = "durden";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "0-unstable-2024-06-23";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "letoram";
|
2022-08-12 12:06:08 +00:00
|
|
|
repo = "durden";
|
2024-07-01 15:47:52 +00:00
|
|
|
rev = "dffb94b69355ffa9cda074c1d0a48af74b78c220";
|
|
|
|
hash = "sha256-sBhlBk4vAYwedw4VerUfY80SXbVoEDid54si6qwDeXs=";
|
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 ./durden ${placeholder "out"}/share/arcan/appl/
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
meta = {
|
2021-07-14 22:03:04 +00:00
|
|
|
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.
|
|
|
|
'';
|
2024-01-02 11:29:13 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
|
|
platforms = lib.platforms.all;
|
2021-07-14 22:03:04 +00:00
|
|
|
};
|
2022-08-12 12:06:08 +00:00
|
|
|
})
|