lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 40 lines 810 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 pkg-config, 6 libXt, 7 libXaw, 8 libXres, 9 utilmacros, 10}: 11 12stdenv.mkDerivation rec { 13 pname = "editres"; 14 version = "1.0.8"; 15 16 src = fetchurl { 17 url = "mirror://xorg/individual/app/editres-${version}.tar.gz"; 18 sha256 = "sha256-LVbWB3vHZ6+n4DD+ssNy/mvok/7EApoj9FodVZ/YRq4="; 19 }; 20 21 nativeBuildInputs = [ pkg-config ]; 22 buildInputs = [ 23 libXt 24 libXaw 25 libXres 26 utilmacros 27 ]; 28 29 configureFlags = [ "--with-appdefaultdir=$(out)/share/X11/app-defaults/editres" ]; 30 31 hardeningDisable = [ "format" ]; 32 33 meta = with lib; { 34 homepage = "https://cgit.freedesktop.org/xorg/app/editres/"; 35 description = "Dynamic resource editor for X Toolkit applications"; 36 license = licenses.mit; 37 platforms = platforms.linux; 38 mainProgram = "editres"; 39 }; 40}