tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cannelloni: move cmake to nativeBuildInputs
figsoda
2 years ago
18095b8d
328bcf4d
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
cannelloni
default.nix
+8
-2
pkgs/os-specific/linux/cannelloni/default.nix
···
1
1
-
{ stdenv, lib, fetchFromGitHub, cmake, lksctp-tools, sctpSupport ? true }:
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, lksctp-tools, sctpSupport ? true }:
2
2
+
2
3
stdenv.mkDerivation (finalAttrs: {
3
4
pname = "cannelloni";
4
5
version = "1.1.0";
···
8
9
rev = "v${finalAttrs.version}";
9
10
hash = "sha256-pAXHo9NCXMFKYcIJogytBiPkQE0nK6chU5TKiDNCKA8=";
10
11
};
11
11
-
buildInputs = [ cmake ] ++ lib.optionals sctpSupport [ lksctp-tools ];
12
12
+
13
13
+
nativeBuildInputs = [
14
14
+
cmake
15
15
+
];
16
16
+
17
17
+
buildInputs = lib.optionals sctpSupport [ lksctp-tools ];
12
18
13
19
cmakeFlags = [
14
20
"-DCMAKE_BUILD_TYPE=Release"