2013-07-04 14:12:42 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libXt, libXaw, libXres, utilmacros }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-14 10:28:16 +01:00
|
|
|
name = "editres-1.0.7";
|
2013-07-04 14:12:42 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 04:38:03 +02:00
|
|
|
url = "mirror://xorg/individual/app/${name}.tar.gz";
|
2018-03-14 10:28:16 +01:00
|
|
|
sha256 = "10mbgijb6ac6wqb2grpy9mrazzw68jxjkxr9cbdf1111pa64yj19";
|
2013-07-04 14:12:42 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libXt libXaw libXres utilmacros ];
|
2013-07-04 14:12:42 +02:00
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--with-appdefaultdir=$(out)/share/X11/app-defaults/editres" ];
|
2016-02-09 02:55:15 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2013-07-04 14:12:42 +02:00
|
|
|
|
2018-09-11 23:24:19 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://cgit.freedesktop.org/xorg/app/editres/;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "A dynamic resource editor for X Toolkit applications";
|
2018-09-11 23:24:19 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2013-07-04 14:12:42 +02:00
|
|
|
};
|
|
|
|
}
|