forked from mirrors/nixpkgs
add the XaraLX Xtreme SVG application
svn path=/nixpkgs/trunk/; revision=5584
This commit is contained in:
parent
89a054b848
commit
c7e4a07c07
9
pkgs/applications/graphics/xara/builder.sh
Normal file
9
pkgs/applications/graphics/xara/builder.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
. $stdenv/setup
|
||||
|
||||
preConfigure() {
|
||||
autoreconf -i
|
||||
}
|
||||
|
||||
preConfigure=preConfigure
|
||||
|
||||
genericBuild
|
13
pkgs/applications/graphics/xara/default.nix
Normal file
13
pkgs/applications/graphics/xara/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{stdenv, fetchurl, autoconf, automake, gettext, libtool, cvs, wxGTK, gtk, pkgconfig, libxml2, zip, libpng, libjpeg}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "xaralx-0.5r1405";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://downloads2.xara.com/opensource/XaraLX-0.5r1405.tar.bz2;
|
||||
md5 = "1b087819e4b10b21da8c267ed56a45a4";
|
||||
};
|
||||
|
||||
buildInputs = [automake autoconf gettext libtool cvs wxGTK gtk pkgconfig libxml2 zip libpng libjpeg];
|
||||
configureFlags = "--with-wx-config --disable-svnversion --disable-international";
|
||||
}
|
Loading…
Reference in a new issue