about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libavc1394/default.nix
blob: 4dfc5713af7e246cae6158381f835cc80489eaa6 (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
{ lib, stdenv, fetchurl, pkg-config, libraw1394, argp-standalone }:

stdenv.mkDerivation rec {
  pname = "libavc1394";
  version = "0.5.4";

  src = fetchurl {
    url = "mirror://sourceforge/libavc1394/${pname}-${version}.tar.gz";
    sha256 = "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw";
  };

  buildInputs = lib.optional stdenv.hostPlatform.isMusl argp-standalone;
  nativeBuildInputs = [ pkg-config ];
  propagatedBuildInputs = [ libraw1394 ];

  NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-largp";

  meta = {
    description = "Programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set";
    homepage = "https://sourceforge.net/projects/libavc1394/";
    license = lib.licenses.lgpl21Plus;
    platforms = lib.platforms.linux;
  };
}