patches = [
(fetchpatch {
name = "fix-variadic-macros.patch";
- url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/fix-variadic-macros.patch?h=packages/libspf2";
+ url = "https://github.com/shevek/libspf2/commit/5852828582f556e73751076ad092f72acf7fc8b6.patch";
sha256 = "00dqpcgjr9jy2qprgqv2qiyvq8y3wlz4yns9xzabf2064jzqh2ic";
})
];
};
outputs = { self, peertube_origin, peertube_syden }: {
+ overlays = {
+ peertube_syden = final: prev: { peertube_syden = peertube_syden.defaultPackage."${final.system}"; };
+ peertube_origin = final: prev: { peertube_origin = peertube_origin.defaultPackage."${final.system}"; };
+ };
packages.x86_64-linux.peertube = peertube_origin.packages.x86_64-linux.peertube;
packages.x86_64-linux.peertube_syden = peertube_syden.packages.x86_64-linux.peertube;
defaultPackage.x86_64-linux = peertube_origin.defaultPackage.x86_64-linux;
-{
+let
+ flakeCompat = import ../lib/flake-compat.nix;
+ flakes = builtins.foldl' (a: b: a // b) {} (map (n: (flakeCompat n).overlays) [
+ ../flakes/libspf2
+ ../flakes/openarc
+ ../flakes/opendmarc
+ ../flakes/peertube
+ ../flakes/private/peertube
+ ]);
+in flakes // {
mylibs = self: super: { mylibs = import ../lib { pkgs = self; }; };
mypkgs = self: super: import ../pkgs { pkgs = self; };
notmuch-python2 = callPackage ./notmuch/notmuch-python { pythonPackages = python2Packages; };
notmuch-python3 = callPackage ./notmuch/notmuch-python { pythonPackages = python3Packages; };
notmuch-vim = callPackage ./notmuch/notmuch-vim {};
- openarc = (mylibs.flakeCompat ../flakes/openarc).default;
- opendmarc = (mylibs.flakeCompat ../flakes/opendmarc).default;
pg_activity = callPackage ./pg_activity { inherit mylibs; };
pgloader = callPackage ./pgloader {};
predixy = callPackage ./predixy { inherit mylibs; };