mirror of https://github.com/materusPL/Nixerus.git
Compare commits
No commits in common. "14e31ce7591aae41102c8e417f3f0fb02700c126" and "8b8d4861b56f6e3c49cbd9253b255b92b19c3f68" have entirely different histories.
14e31ce759
...
8b8d4861b5
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, callPackage }:
|
||||
{ pkgs, callPackage}:
|
||||
rec {
|
||||
amdgpu-pro-libs = pkgs.lib.recurseIntoAttrs {
|
||||
vulkan = callPackage ./libs/amdgpu-pro-libs { };
|
||||
|
@ -9,29 +9,26 @@ rec {
|
|||
};
|
||||
|
||||
|
||||
ffmpeg6-amf-full = (if pkgs.lib.versionOlder pkgs.ffmpeg-full.version "6.1" then
|
||||
pkgs.callPackage ./apps/ffmpeg
|
||||
{
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks)
|
||||
Cocoa CoreServices CoreAudio CoreMedia AVFoundation MediaToolbox
|
||||
VideoDecodeAcceleration VideoToolbox;
|
||||
} else
|
||||
(pkgs.ffmpeg-full.overrideAttrs (finalAttrs: previousAttrs: { configureFlags = previousAttrs.configureFlags ++ [ "--enable-amf" ]; buildInputs = previousAttrs.buildInputs ++ [ pkgs.amf-headers ]; }))
|
||||
ffmpeg6-amf-full = (if pkgs.lib.versionOlder pkgs.ffmpeg-full.version "6.1" then pkgs.callPackage ./apps/ffmpeg {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks)
|
||||
Cocoa CoreServices CoreAudio CoreMedia AVFoundation MediaToolbox
|
||||
VideoDecodeAcceleration VideoToolbox;
|
||||
} else
|
||||
(pkgs.ffmpeg-full.overrideAttrs (finalAttrs: previousAttrs: {configureFlags = previousAttrs.configureFlags ++ ["--enable-amf"]; buildInputs = previousAttrs.buildInputs ++ [pkgs.amf-headers]; }))
|
||||
);
|
||||
|
||||
obs-amf = pkgs.qt6Packages.callPackage ./apps/obs { ffmpeg = ffmpeg6-amf-full; inherit libcef; };
|
||||
obs-amf = pkgs.qt6Packages.callPackage ./apps/obs { ffmpeg = ffmpeg6-amf-full; inherit libcef;};
|
||||
|
||||
polymc = pkgs.qt6Packages.callPackage ./apps/games/polymc { };
|
||||
polymc = pkgs.qt6Packages.callPackage ./apps/games/polymc {};
|
||||
|
||||
alvr = pkgs.callPackage ./apps/games/alvr { };
|
||||
alvr = pkgs.callPackage ./apps/games/alvr {};
|
||||
|
||||
vpk_fuse = callPackage ./apps/vpk_fuse.nix { };
|
||||
vpk_fuse = callPackage ./apps/vpk_fuse.nix {};
|
||||
|
||||
fbset = callPackage ./apps/fbset.nix { };
|
||||
fbset = callPackage ./apps/fbset.nix {};
|
||||
|
||||
libcef = callPackage ./libs/libcef.nix { };
|
||||
libcef = callPackage ./libs/libcef.nix {};
|
||||
|
||||
lh2ctrl = callPackage ./apps/lh2ctrl.nix { };
|
||||
lh2ctrl = callPackage ./apps/lh2ctrl.nix {};
|
||||
|
||||
emacs-materus = (pkgs.emacs29.override { withSQLite3 = true; withWebP = true; withX = true; withGTK3 = true; withAlsaLib = true; withGconf = true; withImageMagick = true; withXwidgets = true; });
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -22,7 +22,7 @@ def readPackages(packageString, packages,version):
|
|||
elif x[0] == "SHA256":
|
||||
packages[len(packages) - 1]["sha256"] = x[1].strip()
|
||||
|
||||
def generateFetchurl(version = "6.0.3", ubuntu_code = "jammy"):
|
||||
def generateFetchurl(version = "6.0.2", ubuntu_code = "jammy"):
|
||||
|
||||
packages = []
|
||||
packages32 = []
|
||||
|
|
Loading…
Reference in New Issue