x264-unstable: init at unstable-2021-04-19
This commit is contained in:
parent
ed965e408a
commit
6eba020bdd
|
@ -37,6 +37,8 @@
|
||||||
unxwb = callPackage ./unxwb { };
|
unxwb = callPackage ./unxwb { };
|
||||||
|
|
||||||
VisiCut = callPackage ./VisiCut { };
|
VisiCut = callPackage ./VisiCut { };
|
||||||
|
|
||||||
|
x264-unstable = prev.x264.overrideAttrs (callPackage ./x264-unstable { });
|
||||||
};
|
};
|
||||||
} // flake-utils.lib.eachDefaultSystem (system:
|
} // flake-utils.lib.eachDefaultSystem (system:
|
||||||
let
|
let
|
||||||
|
@ -61,11 +63,12 @@
|
||||||
(n: v: lib.elem system v.meta.platforms)
|
(n: v: lib.elem system v.meta.platforms)
|
||||||
(flake-utils.lib.flattenTree {
|
(flake-utils.lib.flattenTree {
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
|
VisiCut
|
||||||
cyanrip
|
cyanrip
|
||||||
deemix
|
deemix
|
||||||
textidote
|
textidote
|
||||||
unxwb
|
unxwb
|
||||||
VisiCut;
|
x264-unstable;
|
||||||
|
|
||||||
mpvScripts = lib.recurseIntoAttrs {
|
mpvScripts = lib.recurseIntoAttrs {
|
||||||
inherit (pkgs.mpvScripts)
|
inherit (pkgs.mpvScripts)
|
||||||
|
|
18
x264-unstable/default.nix
Normal file
18
x264-unstable/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{ lib, fetchFromGitLab }:
|
||||||
|
|
||||||
|
o: o // rec {
|
||||||
|
version = "unstable-2021-04-19";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "code.videolan.org";
|
||||||
|
owner = "videolan";
|
||||||
|
repo = o.pname;
|
||||||
|
rev = "b684ebe04a6f80f8207a57940a1fa00e25274f81";
|
||||||
|
sha256 = "06r6m1v88m532wbhk6al9imrsn1inwdjzrpmp97wrbdg6b2naygd";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; o.meta // {
|
||||||
|
description = "${o.meta.description} (unstable version)";
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue