Compare commits

..

No commits in common. "ab926c541b67726cd94b13118db8a6152ecaa6c3" and "16e7cbac50691647f80491b16d9f644f323d4a69" have entirely different histories.

3 changed files with 11 additions and 52 deletions

View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1724412708,
"narHash": "sha256-tLr1k+UZLVumyqXRU8E5lBtLjsvHSy8e2NiamfkjpYg=",
"lastModified": 1719180626,
"narHash": "sha256-vZAzm5KQpR6RGple1dzmSJw5kPivES2heCFM+ZWkt0I=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "b18f3ebc4029c22d437e3424014c8597a8b459a0",
"rev": "6b1f90a8ff92e81638ae6eb48cd62349c3e387bb",
"type": "github"
},
"original": {
@ -23,11 +23,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1724224976,
"narHash": "sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh+aRKoCdaAv5fiO0=",
"lastModified": 1719075281,
"narHash": "sha256-CyyxvOwFf12I91PBWz43iGT1kjsf5oi6ax7CrvaMyAo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c374d94f1536013ca8e92341b540eba4c22f9c62",
"rev": "a71e967ef3694799d0c418c98332f7ff4cc5f6af",
"type": "github"
},
"original": {
@ -39,10 +39,10 @@
},
"nur": {
"locked": {
"lastModified": 1723578304,
"narHash": "sha256-p/G1yrUyJ84lh0JpBHXMwNuHWLKLLKSpdIufPJljvY4=",
"path": "/nix/store/4bwi1xnp0wdss4kncd6sy1bx1d6a8r4w-source",
"rev": "c7ba591cead34c21172cca76f1aabcb130c40508",
"lastModified": 1718621143,
"narHash": "sha256-TeU1Yun2IocjJiOgpanrgfb9CqZz6DuN6SykOZkxf0Q=",
"path": "/nix/store/3is5k3r0zhfwh2k1fr7racraff8rrwba-source",
"rev": "ef9adc6e4f937a4a010867c5625ec14508338083",
"type": "path"
},
"original": {

View File

@ -7,7 +7,7 @@ rec {
prefixes = callPackage ./libs/amdgpu-pro-libs/prefixes.nix { };
firmware = callPackage ./libs/amdgpu-pro-libs/firmware.nix { };
};
svt-av1-psy = callPackage ./libs/svt-av1-psy.nix { };
ffmpeg_7-amf-full = (pkgs.ffmpeg_7-full.overrideAttrs (finalAttrs: previousAttrs: { configureFlags = previousAttrs.configureFlags ++ [ "--enable-amf" ]; buildInputs = previousAttrs.buildInputs ++ [ pkgs.amf-headers ]; }));

View File

@ -1,41 +0,0 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, nasm
}:
stdenv.mkDerivation (finalAttrs: {
pname = "svt-av1-psy";
version = "2.2.0";
src = fetchFromGitHub {
owner = "gianni-rosato";
repo = "svt-av1-psy";
rev = "v${finalAttrs.version}";
hash = "sha256-NWEX7KyQbpUrMbDBQaJWindod85cLUeNqwEpaDPtWUw=";
};
nativeBuildInputs = [
cmake
nasm
];
cmakeFlags = [
"-DSVT_AV1_LTO=ON"
];
meta = with lib; {
homepage = "https://github.com/gianni-rosato/svt-av1-psy";
description = "The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) with perceptual enhancements for psychovisually optimal AV1 encoding";
longDescription = ''
SVT-AV1-PSY is the Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) with perceptual enhancements for psychovisually optimal AV1 encoding.
The goal is to create the best encoding implementation for perceptual quality with AV1.
'';
license = with licenses; [ aom bsd3 ];
platforms = platforms.unix;
};
})