4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ lib, 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 lib; {
|
|
description = "Markdown presentation writer, powered by Electron";
|
|
homepage = "https://yhatt.github.io/marp/";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.puffnfresh ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|