28 lines
420 B
Nix
28 lines
420 B
Nix
{
|
|
lib,
|
|
src,
|
|
stdenv,
|
|
buildInputs,
|
|
nativeBuildInputs,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "dwl";
|
|
version = "0.1.0";
|
|
inherit src buildInputs nativeBuildInputs;
|
|
|
|
makeFlags = [
|
|
];
|
|
|
|
meta = {
|
|
description = "dwm for Wayland";
|
|
homepage = "https://codeberg.org/dwl/dwl";
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "dwl";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/
|
|
cp dwl $out/
|
|
'';
|
|
}
|