summary refs log tree commit diff
path: root/pkgs/development/libraries/x264
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-05-22 00:18:45 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-05-22 00:18:45 +0000
commitbd0df285faf3d7fc1d89f3315c310e4e31b5faf1 (patch)
treeb33e628d3251a25ceab3e517971774eb269fcfb7 /pkgs/development/libraries/x264
parent7cc066df68d53f7683391beb8f19fca8f500dbc0 (diff)
downloadnixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.tar
nixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.tar.gz
nixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.tar.bz2
nixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.tar.lz
nixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.tar.xz
nixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.tar.zst
nixlib-bd0df285faf3d7fc1d89f3315c310e4e31b5faf1.zip
x264 codec lib added
svn path=/nixpkgs/trunk/; revision=11876
Diffstat (limited to 'pkgs/development/libraries/x264')
-rw-r--r--pkgs/development/libraries/x264/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/x264/default.nix b/pkgs/development/libraries/x264/default.nix
new file mode 100644
index 000000000000..9b8cee26868a
--- /dev/null
+++ b/pkgs/development/libraries/x264/default.nix
@@ -0,0 +1,18 @@
+args:
+args.stdenv.mkDerivation rec {
+  version = "snapshot-20080521-2245";
+  name = "x264-${version}";
+
+  src = args.fetchurl {
+    url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
+    sha256 = "07khxih1lmhvrzlaksqmaghbi8w2yyjrjcw867gi2y4z1h0ndhks";
+  };
+
+  buildInputs =(with args; []);
+
+  meta = { 
+      description = "library for encoding H264/AVC video streams";
+      homepage = http://www.videolan.org/developers/x264.html;
+      license = "GPL";
+  };
+}