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
7
8
8
stdenv.mkDerivation (finalAttrs: {
9
9
pname = "jasper";
10
10
-
version = "4.0.0";
10
10
+
version = "4.0.1";
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "jasper-software";
14
14
repo = "jasper";
15
15
rev = "version-${finalAttrs.version}";
16
16
-
hash = "sha256-v/AFx40JWdbTCa008tDz/n9cXgpAkKv4rSiGJ8yx1YQ=";
16
16
+
hash = "sha256-IQBszOKou5Q1lgDy2LICHFmOKYJ3/djmuHGNalVHeBQ=";
17
17
};
18
18
19
19
+
outputs = [ "out" "dev" "doc" "lib" "man" ];
20
20
+
19
21
nativeBuildInputs = [
20
22
cmake
21
23
pkg-config
22
24
];
23
25
26
26
+
# Since "build" already exists and is populated, cmake tries to use it,
27
27
+
# throwing uncomprehensible error messages...
24
28
cmakeBuildDir = "build-directory";
25
29
26
30
strictDeps = true;