summary refs log tree commit diff
path: root/pkgs/development/libraries/libraw1394
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-25 15:54:12 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-25 21:27:53 -0700
commit14d52d7e0d66aa81b9789863ca46f9d2d47f13f5 (patch)
tree6baae982f6e2e345309a1caaea521b69eadd6485 /pkgs/development/libraries/libraw1394
parentbdf23292626d84a9f3409df1b1bb81b91eee23b6 (diff)
downloadnixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.tar
nixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.tar.gz
nixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.tar.bz2
nixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.tar.lz
nixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.tar.xz
nixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.tar.zst
nixpkgs-14d52d7e0d66aa81b9789863ca46f9d2d47f13f5.zip
Fix some platforms
Diffstat (limited to 'pkgs/development/libraries/libraw1394')
-rw-r--r--pkgs/development/libraries/libraw1394/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libraw1394/default.nix b/pkgs/development/libraries/libraw1394/default.nix
index 81cac5be709..c9850fa8b69 100644
--- a/pkgs/development/libraries/libraw1394/default.nix
+++ b/pkgs/development/libraries/libraw1394/default.nix
@@ -8,9 +8,11 @@ stdenv.mkDerivation rec {
     sha256 = "0w5sw06p51wfq2ahgql93ljkkp3hqprifzcxq8dq71c8zcbgyg58";
   };
 
-  meta = { 
+  meta = with stdenv.lib; {
     description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
     homepage = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394";
     license = ["GPL" "LGPL"];
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ wkennington ];
   };
 }