about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libnut/default.nix
blob: 401327b0158a0fe8898e977891828d3e97c807ed (plain) (blame)
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
{ stdenv
, lib
, fetchgit
}:
stdenv.mkDerivation rec {
  pname = "libnut";
  version = "unstable-2020-11-06";

  src = fetchgit {
    url = "https://git.ffmpeg.org/nut.git";
    rev = "12f6a7af3e0f34fd957cf078b66f072d3dc695b3";
    sha256 = "1wgl2mb9482c1j3yac0v2ilfjs7gb9mhw9kjnrmlj9kp0whm4l1j";
  };

  sourceRoot = "${src.name}/src/trunk";
  makeFlags = ["prefix=$(out)"];
  installTargets = [
    "install-libnut"
    "install-nututils"
  ];

  meta = with lib; {
    description = "A library to read/write the NUT video container format";
    homepage = "https://git.ffmpeg.org/gitweb/nut.git";
    license = licenses.mit;
    maintainers = with maintainers; [quag];
    platforms = platforms.linux;
  };
}