31 lines
742 B
Nix
31 lines
742 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchgit,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libnut";
|
|
version = "unstable-2020-11-06";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.ffmpeg.org/nut.git";
|
|
rev = "12f6a7af3e0f34fd957cf078b66f072d3dc695b3";
|
|
sha256 = "1wgl2mb9482c1j3yac0v2ilfjs7gb9mhw9kjnrmlj9kp0whm4l1j";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/src/trunk";
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
installTargets = [
|
|
"install-libnut"
|
|
"install-nututils"
|
|
];
|
|
|
|
meta = {
|
|
description = "Library to read/write the NUT video container format";
|
|
homepage = "https://git.ffmpeg.org/gitweb/nut.git";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ quag ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|