mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
libxl: init at 3.8.1
This commit is contained in:
parent
7be9c9c95f
commit
8d499c2b3d
26
pkgs/development/libraries/libxl/default.nix
Normal file
26
pkgs/development/libraries/libxl/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libxl";
|
||||
version = "3.8.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.libxl.com/download/${name}-lin-${version}.tar.gz";
|
||||
sha256 = "1zdbahhyhr70s8hygwp43j9z4zmglyrr782hkcm1078yvkr2f2fm";
|
||||
};
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir $out
|
||||
cp -rva include_c include_cpp license.txt $out/
|
||||
cp -rva lib64 $out/lib
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A lbrary for parsing excel files";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
|
@ -3171,6 +3171,8 @@ with pkgs;
|
|||
|
||||
libxcomp = callPackage ../development/libraries/libxcomp { };
|
||||
|
||||
libxl = callPackage ../development/libraries/libxl {};
|
||||
|
||||
libx86emu = callPackage ../development/libraries/libx86emu { };
|
||||
|
||||
libzmf = callPackage ../development/libraries/libzmf {};
|
||||
|
|
Loading…
Reference in a new issue