mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalPackages: {
|
|
pname = "durden";
|
|
version = "unstable-2022-10-16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "letoram";
|
|
repo = "durden";
|
|
rev = "728a9f09ac8b306ab2619b4e2ec4f48decf1b7a8";
|
|
hash = "sha256-ckOKdrz232Q6hAyFC2mAyZQLNuuR8JbVhbLy32qFn1o=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|