x264-unstable: init at unstable-2021-04-19

test
Simon Bruder 2021-05-16 15:05:16 +02:00
parent ed965e408a
commit 6eba020bdd
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 22 additions and 1 deletions

View File

@ -37,6 +37,8 @@
unxwb = callPackage ./unxwb { };
VisiCut = callPackage ./VisiCut { };
x264-unstable = prev.x264.overrideAttrs (callPackage ./x264-unstable { });
};
} // flake-utils.lib.eachDefaultSystem (system:
let
@ -61,11 +63,12 @@
(n: v: lib.elem system v.meta.platforms)
(flake-utils.lib.flattenTree {
inherit (pkgs)
VisiCut
cyanrip
deemix
textidote
unxwb
VisiCut;
x264-unstable;
mpvScripts = lib.recurseIntoAttrs {
inherit (pkgs.mpvScripts)

18
x264-unstable/default.nix Normal file
View 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 ];
};
}