Compare commits
3 Commits
e8955e977b
...
f3efd6f932
Author | SHA1 | Date | |
---|---|---|---|
f3efd6f932 | |||
|
45cf064f13 | ||
|
25b0104686 |
6
flake.lock
generated
6
flake.lock
generated
@ -20,11 +20,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1694948089,
|
"lastModified": 1696725822,
|
||||||
"narHash": "sha256-d2B282GmQ9o8klc22/Rbbbj6r99EnELQpOQjWMyv0rU=",
|
"narHash": "sha256-B7uAOS7TkLlOg1aX01rQlYbydcyB6ZnLJSfaYbKVww8=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5148520bfab61f99fd25fb9ff7bfbb50dad3c9db",
|
"rev": "5aabb5780a11c500981993d49ee93cfa6df9307b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
, mp4Support ? false
|
, mp4Support ? false
|
||||||
, fdk-aac-encoder
|
, fdk-aac-encoder
|
||||||
, oggSupport ? false
|
, oggSupport ? false
|
||||||
, vorbisTools
|
, vorbis-tools
|
||||||
, opusSupport ? false
|
, opusSupport ? false
|
||||||
, opusTools
|
, opusTools
|
||||||
}:
|
}:
|
||||||
@ -23,7 +23,7 @@ assert aacSupport -> faac.meta.available;
|
|||||||
assert alacSupport -> libav.meta.available;
|
assert alacSupport -> libav.meta.available;
|
||||||
assert flacSupport -> flac.meta.available;
|
assert flacSupport -> flac.meta.available;
|
||||||
assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available;
|
assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available;
|
||||||
assert oggSupport -> vorbisTools.meta.available;
|
assert oggSupport -> vorbis-tools.meta.available;
|
||||||
assert opusSupport -> opusTools.meta.available;
|
assert opusSupport -> opusTools.meta.available;
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
@ -51,7 +51,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
(if alacSupport then libav else null)
|
(if alacSupport then libav else null)
|
||||||
(if aacSupport then faac else null)
|
(if aacSupport then faac else null)
|
||||||
(if (m4aSupport || mp4Support) then fdk-aac-encoder else null)
|
(if (m4aSupport || mp4Support) then fdk-aac-encoder else null)
|
||||||
(if oggSupport then vorbisTools else null)
|
(if oggSupport then vorbis-tools else null)
|
||||||
(if opusSupport then opusTools else null)
|
(if opusSupport then opusTools else null)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user