mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{ stdenv, fetchurl, fetchpatch, pkgconfig, perl, perlXMLParser, libXft
|
|
, libpng, zlib, popt, boehmgc, libxml2, libxslt, glib, gtkmm2
|
|
, glibmm, libsigcxx, lcms, boost, gettext, makeWrapper, intltool
|
|
, gsl, python2, poppler, imagemagick, libwpg, librevenge
|
|
, libvisio, libcdr, libexif, automake114x, cmake
|
|
}:
|
|
|
|
let
|
|
python2Env = python2.withPackages(ps: with ps; [ numpy lxml ]);
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "inkscape-0.92.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://media.inkscape.org/dl/resources/file/${name}.tar_XlpI7qT.bz2";
|
|
sha256 = "01chr3vh728dkg7l7lilwgmh5nrp784khdhjgpqjbq9dh2zhax15";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
cp $src ${name}.tar.bz2
|
|
tar xvjf ${name}.tar.bz2 > /dev/null
|
|
cd ${name}
|
|
'';
|
|
|
|
postPatch = ''
|
|
patchShebangs share/extensions
|
|
patchShebangs fix-roff-punct
|
|
'';
|
|
|
|
# Python is used at run-time to execute scripts, e.g., those from
|
|
# the "Effects" menu.
|
|
propagatedBuildInputs = [ python2Env ];
|
|
|
|
buildInputs = [
|
|
pkgconfig perl perlXMLParser libXft libpng zlib popt boehmgc
|
|
libxml2 libxslt glib gtkmm2 glibmm libsigcxx lcms boost gettext
|
|
makeWrapper intltool gsl poppler imagemagick libwpg librevenge
|
|
libvisio libcdr libexif automake114x cmake
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
# Make sure PyXML modules can be found at run-time.
|
|
rm "$out/share/icons/hicolor/icon-theme.cache"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
license = "GPL";
|
|
homepage = http://www.inkscape.org;
|
|
description = "Vector graphics editor";
|
|
platforms = platforms.all;
|
|
longDescription = ''
|
|
Inkscape is a feature-rich vector graphics editor that edits
|
|
files in the W3C SVG (Scalable Vector Graphics) file format.
|
|
|
|
If you want to import .eps files install ps2edit.
|
|
'';
|
|
};
|
|
}
|