feat: simple bar for now.
This commit is contained in:
parent
de0cb7d6e0
commit
14dd8214ac
7 changed files with 303 additions and 0 deletions
25
default.nix
Normal file
25
default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
stdenv,
|
||||
quickshell,
|
||||
makeWrapper,
|
||||
...
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
name = "cronyshell";
|
||||
|
||||
src = ./.;
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/share/quickshell/cronyshell
|
||||
|
||||
cp -r $src/src/* $out/share/quickshell/cronyshell
|
||||
|
||||
cp ${quickshell}/bin/quickshell $out/bin/cronyshell
|
||||
|
||||
wrapProgram $out/bin/cronyshell \
|
||||
--add-flags "-p $out/share/quickshell/cronyshell"
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue