-
Notifications
You must be signed in to change notification settings - Fork 14
/
flake.nix
36 lines (33 loc) · 834 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
description = "Modern Qt/C++ implementation of Achtung die Kurve with online multiplayer";
inputs = {
quartz.url = "github:vimpostor/quartz";
};
outputs = { self, quartz }: quartz.lib.eachSystem (system:
let
pkgs = quartz.inputs.nixpkgs.legacyPackages.${system};
in
{
packages = {
default = pkgs.stdenv.mkDerivation {
pname = "quickcurver";
version = quartz.lib.cmakeProjectVersion ./CMakeLists.txt;
src = ./.;
nativeBuildInputs = with pkgs; [
cmake
pkg-config
qt6.wrapQtAppsHook
imagemagick
];
buildInputs = with pkgs; [
qt6.qtbase
qt6.qtdeclarative
qt6.qtsvg
];
cmakeFlags = quartz.lib.cmakeWrapper { inherit pkgs; cmakeFile = ./CMakeLists.txt; };
postBuild = "make linux-desktop-integration";
};
};
}
);
}