fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "mp4v2-1.9.1p4";
5
6 src = fetchurl {
7 url = "http://mp4v2.googlecode.com/files/${name}.tar.bz2";
8 sha256 = "1d73qbi0faqad3bpmjfr4kk0mfmqpl1f43ysrx4gq9i3mfp1qf2w";
9 };
10
11 # From Handbrake
12 # mp4v2 doesn't seem to be actively maintained any more :-/
13 patches = [
14 ./A00-nero-vobsub.patch ./A01-divide-zero.patch ./A02-meaningful-4gb-warning.patch
15 ./P00-mingw-dllimport.patch
16 ];
17 # `faac' expects `mp4.h'.
18 postInstall = "ln -s mp4v2/mp4v2.h $out/include/mp4.h";
19
20 meta = {
21 homepage = http://code.google.com/p/mp4v2;
22 maintainers = [ stdenv.lib.maintainers.urkud ];
23 platforms = stdenv.lib.platforms.all;
24 };
25}