tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libaom: 0.1.0 -> 1.0.0
Vladyslav Mykhailichenko
7 years ago
ff50c613
6e98661a
+8
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libaom
default.nix
+8
-11
pkgs/development/libraries/libaom/default.nix
···
1
1
-
{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig }:
1
1
+
{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3Packages }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "libaom-0.1.0";
4
4
+
name = "libaom-${version}";
5
5
+
version = "1.0.0";
5
6
6
7
src = fetchgit {
7
8
url = "https://aomedia.googlesource.com/aom";
8
8
-
rev = "105e9b195bb90c9b06edcbcb13b6232dab6db0b7";
9
9
-
sha256 = "1fl2sca4df01gyn00s0xcwwirxccfnjppvjdrxdnb8f2naj721by";
9
9
+
rev = "v${version}";
10
10
+
sha256 = "07h2vhdiq7c3fqaz44rl4vja3dgryi6n7kwbwbj1rh485ski4j82";
10
11
};
11
12
12
12
-
buildInputs = [ perl yasm ];
13
13
-
nativeBuildInputs = [ cmake pkgconfig ];
14
14
-
15
15
-
cmakeFlags = [
16
16
-
"-DCONFIG_UNIT_TESTS=0"
17
17
-
];
13
13
+
buildInputs = [ perl yasm ];
14
14
+
nativeBuildInputs = [ cmake pkgconfig python3Packages.python ];
18
15
19
16
meta = with stdenv.lib; {
20
17
description = "AV1 Bitstream and Decoding Library";
···
22
19
maintainers = with maintainers; [ kiloreux ];
23
20
platforms = platforms.all;
24
21
};
25
25
-
}
22
22
+
}