Merge pull request #116778 from SCOTT-HAMILTON/xedit

authored by

Sandro and committed by
GitHub
e671fb70 974f19d7

+47
+45
pkgs/applications/editors/xedit/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , autoreconfHook 5 + , pkg-config 6 + , utilmacros 7 + , libX11 8 + , libXaw 9 + , libXmu 10 + , libXt 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "xedit"; 15 + version = "1.2.2"; 16 + 17 + src = fetchFromGitLab { 18 + domain = "gitlab.freedesktop.org"; 19 + owner = "xorg/app"; 20 + repo = "xedit"; 21 + rev = "${pname}-${version}"; 22 + sha256 = "0b5ic13aasv6zh20v2k7zyxsqbnsxfq5rs3w8nwzl1gklmgrjxa3"; 23 + }; 24 + 25 + nativeBuildInputs = [ autoreconfHook pkg-config utilmacros ]; 26 + buildInputs = [ 27 + libX11 28 + libXaw 29 + libXmu 30 + libXt 31 + ]; 32 + 33 + configureFlags = [ 34 + "--with-lispdir=$out/share/X11/xedit/lisp" 35 + "--with-appdefaultdir=$out/share/X11/app-defaults" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Simple graphical text editor using Athena Widgets (Xaw)"; 40 + homepage = "https://gitlab.freedesktop.org/xorg/app/xedit"; 41 + license = with licenses; [ mit ]; 42 + maintainers = with maintainers; [ shamilton ]; 43 + platforms = platforms.linux; 44 + }; 45 + }
+2
pkgs/top-level/all-packages.nix
··· 20408 20408 20409 20409 xed = callPackage ../development/libraries/xed { }; 20410 20410 20411 + xedit = callPackage ../applications/editors/xedit { }; 20412 + 20411 20413 xine-lib = callPackage ../development/libraries/xine-lib { }; 20412 20414 20413 20415 xautolock = callPackage ../misc/screensavers/xautolock { };