nixpkgs/pkgs/applications/editors/typora/default.nix

69 lines
1.4 KiB
Nix
Raw Normal View History

2019-09-20 01:18:25 +00:00
{ stdenv
, lib
, fetchurl
, makeWrapper
, electron_5
, dpkg
, gtk3
, glib
, gsettings-desktop-schemas
, wrapGAppsHook
, withPandoc ? false
, pandoc
}:
stdenv.mkDerivation rec {
pname = "typora";
2019-08-03 20:49:16 +00:00
version = "0.9.73";
src = fetchurl {
url = "https://www.typora.io/linux/typora_${version}_amd64.deb";
2019-08-03 20:49:16 +00:00
sha256 = "1fgcb4bx5pw8ah5j30d38gw7qi1cmqarfhvgdns9f2n0d57bvvw3";
};
nativeBuildInputs = [
dpkg
makeWrapper
wrapGAppsHook
];
buildInputs = [
glib
gsettings-desktop-schemas
gtk3
];
2018-05-28 09:55:17 +00:00
unpackPhase = "dpkg-deb -x $src .";
dontWrapGApps = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share
{
cd usr
mv share/typora/resources/app $out/share/typora
mv share/{applications,icons,doc} $out/share/
}
runHook postInstall
'';
postFixup = ''
2019-08-03 20:49:16 +00:00
makeWrapper ${electron_5}/bin/electron $out/bin/typora \
--add-flags $out/share/typora \
2018-05-28 09:55:17 +00:00
"''${gappsWrapperArgs[@]}" \
2019-09-20 01:18:25 +00:00
${lib.optionalString withPandoc ''--prefix PATH : "${lib.makeBinPath [ pandoc ]}"''} \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ]}"
'';
2019-09-20 01:18:25 +00:00
meta = with lib; {
description = "A minimal Markdown reading & writing app";
homepage = "https://typora.io";
2017-11-05 17:53:40 +00:00
license = licenses.unfree;
2020-04-25 01:05:59 +00:00
maintainers = with maintainers; [ jensbin ];
2019-08-03 20:49:16 +00:00
platforms = [ "x86_64-linux"];
};
}