blob: 38684e540dad3590843b41fcfe68348538363b5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
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;
};
})
|