summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-01-20 22:29:43 +0100
committerThomas Gerbet <thomas@gerbet.me>2021-01-20 22:29:43 +0100
commit7ab66f91a75d8b7508f57c5719c9c6bc772be59c (patch)
tree2d3ca3ed2a57d6fcb85e11480e9f7b0ddda78522 /pkgs/applications/graphics
parent083d8f8bd68dc1bb253c743300d3c3546f5ce942 (diff)
xfig: 3.2.7b1 -> 3.2.8
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/xfig/default.nix15
1 files changed, 6 insertions, 9 deletions
diff --git a/pkgs/applications/graphics/xfig/default.nix b/pkgs/applications/graphics/xfig/default.nix
index 3f35880b3f22..53a9632e1923 100644
--- a/pkgs/applications/graphics/xfig/default.nix
+++ b/pkgs/applications/graphics/xfig/default.nix
@@ -1,17 +1,14 @@
{ lib, stdenv, fetchurl, xlibsWrapper, makeWrapper, libXpm
-, libXmu, libXi, libXp, Xaw3d, fig2dev
+, libXmu, libXi, libXp, Xaw3d, libXaw, fig2dev
}:
-let
- version = "3.2.7a";
-
-in stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "xfig";
- inherit version;
+ version = "3.2.8";
src = fetchurl {
url = "mirror://sourceforge/mcj/xfig-${version}.tar.xz";
- sha256 = "096zgp0bqnxhgxbrv2jjylrjz3pr4da0xxznlk2z7ffxr5pri2fa";
+ sha256 = "1czamqp0xn0j6qjnasa3fjnrzi072v6qknylr6jrs4gwsfw4ybyw";
};
postPatch = ''
@@ -30,7 +27,7 @@ in stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper ];
- buildInputs = [ xlibsWrapper libXpm libXmu libXi libXp Xaw3d ];
+ buildInputs = [ xlibsWrapper libXpm libXmu libXi libXp Xaw3d libXaw ];
meta = with lib; {
description = "An interactive drawing tool for X11";
@@ -38,6 +35,6 @@ in stdenv.mkDerivation {
Note that you need to have the <literal>netpbm</literal> tools
in your path to export bitmaps.
'';
- inherit (fig2dev.meta) license homepage platforms;
+ inherit (fig2dev.meta) license homepage platforms maintainers;
};
}