reorganized repo

This commit is contained in:
willifan 2024-11-10 16:41:53 +01:00
parent b2796241d7
commit 89bbb229b8
13 changed files with 298 additions and 25063 deletions

33
default.nix Normal file
View file

@ -0,0 +1,33 @@
{ lib
, stdenv
, cmake
, nlohmann_json
}:
stdenv.mkDerivation {
pname = "desktop-utils";
version = "1.0.0";
src = builtins.path { path = ./.; name = "desktop-utils"; };
nativeBuildInputs = [
cmake
];
buildInputs = [
nlohmann_json
];
installPhase = ''
mkdir -p $out/bin
cp clients $out/bin/clients
'';
meta = with lib; {
description = "utils for my desktop";
homepage = " git.huwe.mooo.com/willifan/desktop-utils";
license = licenses.gpl3;
platforms = platforms.unix;
};
}