10 stdenv.mkDerivation rec {
15 url = "mirror://sourceforge/libavc1394/${pname}-${version}.tar.gz";
16 sha256 = "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw";
19 buildInputs = lib.optional stdenv.hostPlatform.isMusl argp-standalone;
20 nativeBuildInputs = [ pkg-config ];
21 propagatedBuildInputs = [ libraw1394 ];
23 NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-largp";
26 description = "Programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set";
27 homepage = "https://sourceforge.net/projects/libavc1394/";
28 license = lib.licenses.lgpl21Plus;
29 platforms = lib.platforms.linux;