Merge pull request #182332 from ckiee/l3afpad-init
l3afpad: init at unstable-2022-02-14
This commit is contained in:
commit
14e3ce3e7d
25
pkgs/applications/editors/l3afpad/default.nix
Normal file
25
pkgs/applications/editors/l3afpad/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, stdenv, fetchurl, intltool, pkg-config, gtk3, fetchFromGitHub
|
||||||
|
, autoreconfHook, wrapGAppsHook }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "unstable-2022-02-14";
|
||||||
|
pname = "l3afpad";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "stevenhoneyman";
|
||||||
|
repo = pname;
|
||||||
|
rev = "16f22222116b78b7f6a6fd83289937cdaabed624";
|
||||||
|
sha256 = "sha256-ly2w9jmRlprm/PnyC0LYjrxBVK+J0DLiSpzuTUMZpWA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config autoreconfHook wrapGAppsHook ];
|
||||||
|
buildInputs = [ intltool gtk3 ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple text editor forked from Leafpad using GTK+ 3.x";
|
||||||
|
homepage = "https://github.com/stevenhoneyman/l3afpad";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ ckie ];
|
||||||
|
license = licenses.gpl2;
|
||||||
|
};
|
||||||
|
}
|
@ -9084,6 +9084,8 @@ with pkgs;
|
|||||||
|
|
||||||
leafpad = callPackage ../applications/editors/leafpad { };
|
leafpad = callPackage ../applications/editors/leafpad { };
|
||||||
|
|
||||||
|
l3afpad = callPackage ../applications/editors/l3afpad { };
|
||||||
|
|
||||||
leatherman = callPackage ../development/libraries/leatherman { };
|
leatherman = callPackage ../development/libraries/leatherman { };
|
||||||
|
|
||||||
ledit = callPackage ../tools/misc/ledit {
|
ledit = callPackage ../tools/misc/ledit {
|
||||||
|
Loading…
Reference in New Issue
Block a user