tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
jasper: 4.0.0 -> 4.0.1
Anderson Torres
2 years ago
55f4e5b6
3a314ad9
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ja
jasper
package.nix
+6
-2
pkgs/by-name/ja/jasper/package.nix
···
7
8
stdenv.mkDerivation (finalAttrs: {
9
pname = "jasper";
10
-
version = "4.0.0";
11
12
src = fetchFromGitHub {
13
owner = "jasper-software";
14
repo = "jasper";
15
rev = "version-${finalAttrs.version}";
16
-
hash = "sha256-v/AFx40JWdbTCa008tDz/n9cXgpAkKv4rSiGJ8yx1YQ=";
17
};
18
0
0
19
nativeBuildInputs = [
20
cmake
21
pkg-config
22
];
23
0
0
24
cmakeBuildDir = "build-directory";
25
26
strictDeps = true;
···
7
8
stdenv.mkDerivation (finalAttrs: {
9
pname = "jasper";
10
+
version = "4.0.1";
11
12
src = fetchFromGitHub {
13
owner = "jasper-software";
14
repo = "jasper";
15
rev = "version-${finalAttrs.version}";
16
+
hash = "sha256-IQBszOKou5Q1lgDy2LICHFmOKYJ3/djmuHGNalVHeBQ=";
17
};
18
19
+
outputs = [ "out" "dev" "doc" "lib" "man" ];
20
+
21
nativeBuildInputs = [
22
cmake
23
pkg-config
24
];
25
26
+
# Since "build" already exists and is populated, cmake tries to use it,
27
+
# throwing uncomprehensible error messages...
28
cmakeBuildDir = "build-directory";
29
30
strictDeps = true;