about summary refs log tree commit diff
path: root/pkgs/applications/graphics/pencil/default.nix
blob: 737baf375d1ab180505261efe3cd029bd941cfa0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, xulrunner }:

stdenv.mkDerivation rec {
  name = "pencil-2.0.5";

  src = fetchurl {
    url = "http://evoluspencil.googlecode.com/files/${name}.tar.gz";
    sha256 = "0rn5nb08p8wph5s5gajkil6y06zgrm86p4gnjdgv76czx1fqazm0";
  };

  # Pre-built package
  buildPhase = "true";

  installPhase = ''
    mkdir -p "$out"
    cp -r usr/* "$out"
    cp COPYING "$out/share/pencil"
    sed -e "s|/usr/bin/xulrunner|${xulrunner}/bin/xulrunner|" \
        -e "s|/usr/share/pencil|$out/share/pencil|" \
        -i "$out/bin/pencil"
    sed -e "s|/usr/bin/pencil|$out/bin/pencil|" \
        -e "s|Icon=.*|Icon=$out/share/pencil/skin/classic/icon.svg|" \
        -i "$out/share/applications/pencil.desktop"
  '';

  meta = with stdenv.lib; {
    description = "GUI prototyping/mockup tool";
    homepage = http://pencil.evolus.vn/;
    license = licenses.gpl2; # Commercial license is also available
    maintainers = [ maintainers.bjornfor ];
    platforms = platforms.linux;
  };
}