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
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ lib, stdenv, fetchurl, xlibsWrapper, makeWrapper, libXpm
|
|
, libXmu, libXi, libXp, Xaw3d, fig2dev
|
|
}:
|
|
|
|
let
|
|
version = "3.2.7a";
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "xfig";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mcj/xfig-${version}.tar.xz";
|
|
sha256 = "096zgp0bqnxhgxbrv2jjylrjz3pr4da0xxznlk2z7ffxr5pri2fa";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i 's:"fig2dev":"${fig2dev}/bin/fig2dev":' src/main.c
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/X11/app-defaults
|
|
cp app-defaults/* $out/share/X11/app-defaults
|
|
|
|
wrapProgram $out/bin/xfig \
|
|
--set XAPPLRESDIR $out/share/X11/app-defaults
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ xlibsWrapper libXpm libXmu libXi libXp Xaw3d ];
|
|
|
|
meta = with lib; {
|
|
description = "An interactive drawing tool for X11";
|
|
longDescription = ''
|
|
Note that you need to have the <literal>netpbm</literal> tools
|
|
in your path to export bitmaps.
|
|
'';
|
|
inherit (fig2dev.meta) license homepage platforms;
|
|
};
|
|
}
|