mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
a7bedb1933
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.0.7 in filename of file in /nix/store/3mbmc1niw3y2m109f6v0xlch0pn1ml8q-editres-1.0.7
25 lines
683 B
Nix
25 lines
683 B
Nix
{ stdenv, fetchurl, pkgconfig, libXt, libXaw, libXres, utilmacros }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "editres-1.0.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xorg/individual/app/${name}.tar.gz";
|
|
sha256 = "10mbgijb6ac6wqb2grpy9mrazzw68jxjkxr9cbdf1111pa64yj19";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libXt libXaw libXres utilmacros ];
|
|
|
|
configureFlags = "--with-appdefaultdir=$(out)/share/X11/app-defaults/editres";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
homepage = https://cgit.freedesktop.org/xorg/app/editres/;
|
|
description = "A dynamic resource editor for X Toolkit applications";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|