about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libavc1394/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libavc1394/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/libavc1394/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libavc1394/default.nix b/nixpkgs/pkgs/development/libraries/libavc1394/default.nix
new file mode 100644
index 000000000000..d9c10415b67a
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libavc1394/default.nix
@@ -0,0 +1,20 @@
+{ lib, stdenv, fetchurl, pkg-config, libraw1394 }:
+
+stdenv.mkDerivation rec {
+  name = "libavc1394-0.5.4";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/libavc1394/${name}.tar.gz";
+    sha256 = "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  propagatedBuildInputs = [ libraw1394 ];
+
+  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;
+  };
+}