summary refs log tree commit diff
path: root/pkgs/applications/office/marp/default.nix
blob: 7c054ba52047949c866f3cdd9eb79c570145f677 (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
34
35
36
37
{ stdenv, fetchurl, atomEnv, libXScrnSaver, gtk2 }:

stdenv.mkDerivation rec {
  pname = "marp";
  version = "0.0.14";

  src = fetchurl {
    url = "https://github.com/yhatt/marp/releases/download/v${version}/${version}-Marp-linux-x64.tar.gz";
    sha256 = "0nklzxwdx5llzfwz1hl2jpp2kwz78w4y63h5l00fh6fv6zisw6j4";
  };

  unpackPhase = ''
    mkdir {locales,resources}
    tar --delay-directory-restore -xf $src
    chmod u+x {locales,resources}
  '';

  installPhase = ''
    mkdir -p $out/lib/marp $out/bin
    cp -r ./* $out/lib/marp
    ln -s $out/lib/marp/Marp $out/bin
  '';

  postFixup = ''
    patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
      --set-rpath "${atomEnv.libPath}:${stdenv.lib.makeLibraryPath [ libXScrnSaver gtk2 ]}:$out/lib/marp" \
      $out/bin/Marp
  '';

  meta = with stdenv.lib; {
    description = "Markdown presentation writer, powered by Electron";
    homepage = https://yhatt.github.io/marp/;
    license = licenses.mit;
    maintainers = [ maintainers.puffnfresh ];
    platforms = [ "x86_64-linux" ];
  };
}