summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-01-12 01:26:04 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-01-12 01:26:04 +0000
commit01815622698a48b2a52e1f5afc7f94606a9a636f (patch)
tree49f42b2be3150a23105d5dc40d7a7c44eb54244f
parentee17a4e1534619d50f9f1504a6abf2cd53cd0b9d (diff)
downloadnixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.tar
nixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.tar.gz
nixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.tar.bz2
nixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.tar.lz
nixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.tar.xz
nixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.tar.zst
nixpkgs-01815622698a48b2a52e1f5afc7f94606a9a636f.zip
libraw1394 added
svn path=/nixpkgs/trunk/; revision=10121
-rw-r--r--pkgs/development/libraries/libraw1394/default.nix17
-rw-r--r--pkgs/top-level/all-packages.nix5
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libraw1394/default.nix b/pkgs/development/libraries/libraw1394/default.nix
new file mode 100644
index 00000000000..62398404ac2
--- /dev/null
+++ b/pkgs/development/libraries/libraw1394/default.nix
@@ -0,0 +1,17 @@
+args:
+args.stdenv.mkDerivation {
+  name = "libraw1394-1.2.0";
+
+  src = args.fetchurl {
+    url = "mirror://sourceforge/libraw1394/libraw1394-1.2.0.tar.gz";
+    sha256 = "1b9zqqzyz0ihyfvhn135y3wc6vmym5yz21jxj9dp0f09b96gmp0z";
+  };
+
+  buildInputs =(with args; []);
+
+  meta = { 
+      description = "library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
+      homepage = "http://wiki.linux1394.org/";
+      license = ["GPL" "LGPL"];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 79fd115a120..d8bcc3f02ac 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -3347,6 +3347,11 @@ rec {
   libselinux = import ../os-specific/linux/libselinux {
     inherit fetchurl stdenv libsepol;
   };
+
+  libraw1394 = import ../development/libraries/libraw1394 {
+    inherit fetchurl stdenv;
+  };
+
  
   libsexy = import ../development/libraries/libsexy {
     inherit stdenv fetchurl pkgconfig libxml2;