Skip to content

Commit

Permalink
inkscape: 0.92.0 -> 0.92.1 (#23652)
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon authored and qknight committed Mar 9, 2017
1 parent dba9ca4 commit 2ab778c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pkgs/applications/graphics/inkscape/default.nix
Expand Up @@ -5,18 +5,24 @@
, libvisio, libcdr, libexif, automake114x, cmake
}:

let
let
python2Env = python2.withPackages(ps: with ps; [ numpy lxml ]);
in

stdenv.mkDerivation rec {
name = "inkscape-0.92.0";
name = "inkscape-0.92.1";

src = fetchurl {
url = "https://inkscape.org/gallery/item/10552/${name}.tar.bz2";
sha256 = "0mmssxnxsvb3bpm7ck5pqvwyacrz1nkyacs571jx8j04l1cw3d5q";
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
Expand Down

2 comments on commit 2ab778c

@bjornfor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.tar_XlpI7qT.bz2

That's a weird file extension.

@qknight
Copy link
Member

@qknight qknight commented on 2ab778c Mar 9, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bjornfor but since it is from media.inkscape.org i figured i trust it anyways...

Please sign in to comment.