Merge pull request #116778 from SCOTT-HAMILTON/xedit
This commit is contained in:
commit
e671fb70fd
2 changed files with 47 additions and 0 deletions
45
pkgs/applications/editors/xedit/default.nix
Normal file
45
pkgs/applications/editors/xedit/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitLab
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
, utilmacros
|
||||||
|
, libX11
|
||||||
|
, libXaw
|
||||||
|
, libXmu
|
||||||
|
, libXt
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "xedit";
|
||||||
|
version = "1.2.2";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.freedesktop.org";
|
||||||
|
owner = "xorg/app";
|
||||||
|
repo = "xedit";
|
||||||
|
rev = "${pname}-${version}";
|
||||||
|
sha256 = "0b5ic13aasv6zh20v2k7zyxsqbnsxfq5rs3w8nwzl1gklmgrjxa3";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkg-config utilmacros ];
|
||||||
|
buildInputs = [
|
||||||
|
libX11
|
||||||
|
libXaw
|
||||||
|
libXmu
|
||||||
|
libXt
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--with-lispdir=$out/share/X11/xedit/lisp"
|
||||||
|
"--with-appdefaultdir=$out/share/X11/app-defaults"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple graphical text editor using Athena Widgets (Xaw)";
|
||||||
|
homepage = "https://gitlab.freedesktop.org/xorg/app/xedit";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ shamilton ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -20408,6 +20408,8 @@ with pkgs;
|
||||||
|
|
||||||
xed = callPackage ../development/libraries/xed { };
|
xed = callPackage ../development/libraries/xed { };
|
||||||
|
|
||||||
|
xedit = callPackage ../applications/editors/xedit { };
|
||||||
|
|
||||||
xine-lib = callPackage ../development/libraries/xine-lib { };
|
xine-lib = callPackage ../development/libraries/xine-lib { };
|
||||||
|
|
||||||
xautolock = callPackage ../misc/screensavers/xautolock { };
|
xautolock = callPackage ../misc/screensavers/xautolock { };
|
||||||
|
|
Loading…
Reference in a new issue