My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libavc1394/default.nix

21 lines
659 B

{ lib, stdenv, fetchurl, pkg-config, libraw1394 }:
stdenv.mkDerivation rec {
pname = "libavc1394";
version = "0.5.4";
src = fetchurl {
url = "mirror://sourceforge/libavc1394/${pname}-${version}.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;
};
}