Following the Quickshell documentation to get started https://quickshell.outfoxxed.me/docs
19 lines
308 B
Nix
19 lines
308 B
Nix
{ stdenv, quickshell, ... }:
|
|
stdenv.mkDerivation rec {
|
|
name = "nysh";
|
|
|
|
unpackPhase = ":";
|
|
|
|
buildPhase = ''
|
|
cat > ${name} <<EOF
|
|
#! $SHELL
|
|
${quickshell}/bin/quickshell -p ${../src}
|
|
EOF
|
|
chmod +x ${name}
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ${name} $out/bin/
|
|
'';
|
|
}
|