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

73 lines
1.5 KiB
Nix
Raw Normal View History

2019-09-20 01:18:25 +00:00
{ stdenv
, lib
, fetchurl
, makeWrapper
2020-08-31 04:05:04 +00:00
, electron_9
2019-09-20 01:18:25 +00:00
, dpkg
, gtk3
, glib
, gsettings-desktop-schemas
, wrapGAppsHook
, withPandoc ? false
, pandoc
}:
let
2020-08-31 04:05:04 +00:00
electron = electron_9;
in
stdenv.mkDerivation rec {
pname = "typora";
2020-08-31 04:05:04 +00:00
version = "0.9.95";
src = fetchurl {
url = "https://www.typora.io/linux/typora_${version}_amd64.deb";
2020-08-31 04:05:04 +00:00
sha256 = "0kgzk7z707vlbjrvykrnw2h6wscmc3h5hxycyz1z1j2cz26fns4p";
};
nativeBuildInputs = [
dpkg
makeWrapper
wrapGAppsHook
];
buildInputs = [
glib
gsettings-desktop-schemas
gtk3
];
2018-05-28 09:55:17 +00:00
2020-07-04 14:25:22 +00:00
# The deb contains setuid permission on `chrome-sandbox`, which will actually not get installed.
unpackPhase = "dpkg-deb --fsys-tarfile $src | tar -x --no-same-permissions --no-same-owner";
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 = ''
makeWrapper ${electron}/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"];
};
}