mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
libebml: 1.0.0
svn path=/nixpkgs/trunk/; revision=25923
This commit is contained in:
parent
36c45a06dd
commit
489b0e2fe5
19
pkgs/development/libraries/libebml/default.nix
Normal file
19
pkgs/development/libraries/libebml/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libebml-1.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.matroska.org/downloads/libebml/${name}.tar.bz2";
|
||||
sha256 = "0y5ip30nr96wjlh1pzw35ia1axyib158dhz8r5dxzmbcfgn0sj3j";
|
||||
};
|
||||
|
||||
configurePhase = "cd make/linux";
|
||||
makeFlags = "prefix=$(out)";
|
||||
|
||||
meta = {
|
||||
description = "Extensible Binary Meta Language library";
|
||||
homepage = http://dl.matroska.org/downloads/libebml/;
|
||||
};
|
||||
}
|
||||
|
@ -3451,6 +3451,8 @@ let
|
||||
|
||||
libdvdread = callPackage ../development/libraries/libdvdread { };
|
||||
|
||||
libebml = callPackage ../development/libraries/libebml { };
|
||||
|
||||
libedit = callPackage ../development/libraries/libedit { };
|
||||
|
||||
libelf = callPackage ../development/libraries/libelf { };
|
||||
|
Loading…
Reference in New Issue
Block a user