tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
clboss: 0.14.0 -> 0.14.1
Erik Arvstedt
1 year ago
ff1e52f4
5a79b2d2
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
cl
clboss
package.nix
+4
-2
pkgs/by-name/cl/clboss/package.nix
···
7
pkg-config,
8
curlWithGnuTls,
9
libev,
0
10
sqlite,
11
}:
12
13
stdenv.mkDerivation rec {
14
pname = "clboss";
15
-
version = "0.14.0";
16
17
# The release tarball includes the pre-generated file `commit_hash.h` that is required for building
18
src = fetchzip {
19
url = "https://github.com/ZmnSCPxj/clboss/releases/download/v${version}/clboss-v${version}.tar.gz";
20
-
hash = "sha256-Qp8br4ZxiqaxFZ6Tb+wFpqp2APmnU9QdNkM8MyGAtrw=";
21
};
22
23
nativeBuildInputs = [
···
25
autoreconfHook
26
pkg-config
27
libev
0
28
curlWithGnuTls
29
sqlite
30
];
···
7
pkg-config,
8
curlWithGnuTls,
9
libev,
10
+
libunwind,
11
sqlite,
12
}:
13
14
stdenv.mkDerivation rec {
15
pname = "clboss";
16
+
version = "0.14.1";
17
18
# The release tarball includes the pre-generated file `commit_hash.h` that is required for building
19
src = fetchzip {
20
url = "https://github.com/ZmnSCPxj/clboss/releases/download/v${version}/clboss-v${version}.tar.gz";
21
+
hash = "sha256-JMbNHEI0j78LJYsBZ/Z4qvEdRqgQtWG1HlGW3SBXUCg=";
22
};
23
24
nativeBuildInputs = [
···
26
autoreconfHook
27
pkg-config
28
libev
29
+
libunwind
30
curlWithGnuTls
31
sqlite
32
];