reorganized repo
This commit is contained in:
parent
b2796241d7
commit
89bbb229b8
13 changed files with 298 additions and 25063 deletions
33
default.nix
Normal file
33
default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue