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