at 18.09-beta 20 lines 637 B view raw
1{ stdenv, fetchurl, pkgconfig, libraw1394 }: 2 3stdenv.mkDerivation rec { 4 name = "libavc1394-0.5.4"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libavc1394/${name}.tar.gz"; 8 sha256 = "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ]; 12 propagatedBuildInputs = [ libraw1394 ]; 13 14 meta = { 15 description = "Programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set"; 16 homepage = https://sourceforge.net/projects/libavc1394/; 17 license = stdenv.lib.licenses.lgpl21Plus; 18 platforms = stdenv.lib.platforms.linux; 19 }; 20}