mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, makeWrapper, xulrunner }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.0.21";
|
|
name = "pencil-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz";
|
|
sha256 = "0xq3gczqy7gzf1997qxdql5z7qqk1vabr0rzgakmsi4dq2q4d3kq";
|
|
};
|
|
|
|
buildPhase = "";
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out"
|
|
cp -r usr/* "$out"
|
|
sed -e "s|/usr/share/evolus-pencil|$out/share/evolus-pencil|" \
|
|
-i "$out/bin/pencil"
|
|
sed -e "s|/usr/bin/pencil|$out/bin/pencil|" \
|
|
-e "s|Icon=.*|Icon=$out/share/evolus-pencil/skin/classic/icon.svg|" \
|
|
-i "$out/share/applications/pencil.desktop"
|
|
|
|
wrapProgram $out/bin/pencil \
|
|
--prefix PATH ":" ${xulrunner}/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GUI prototyping/mockup tool";
|
|
homepage = http://github.com/prikhi/pencil;
|
|
license = licenses.gpl2; # Commercial license is also available
|
|
maintainers = with maintainers; [ bjornfor prikhi ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|