2024-05-20 05:17:03 +02:00
|
|
|
{ lib, stdenv, intltool, pkg-config, gtk3, fetchFromGitHub
|
2024-04-26 22:24:03 +02:00
|
|
|
, autoreconfHook, wrapGAppsHook3 }:
|
2022-07-21 13:49:18 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "unstable-2022-02-14";
|
|
|
|
pname = "l3afpad";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stevenhoneyman";
|
|
|
|
repo = pname;
|
|
|
|
rev = "16f22222116b78b7f6a6fd83289937cdaabed624";
|
|
|
|
sha256 = "sha256-ly2w9jmRlprm/PnyC0LYjrxBVK+J0DLiSpzuTUMZpWA=";
|
|
|
|
};
|
|
|
|
|
2024-04-26 22:24:03 +02:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook wrapGAppsHook3 intltool ];
|
2023-03-10 23:55:17 +01:00
|
|
|
buildInputs = [ gtk3 ];
|
2022-07-21 13:49:18 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple text editor forked from Leafpad using GTK+ 3.x";
|
|
|
|
homepage = "https://github.com/stevenhoneyman/l3afpad";
|
|
|
|
platforms = platforms.linux;
|
2024-07-02 00:21:46 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2022-07-21 13:49:18 +02:00
|
|
|
license = licenses.gpl2;
|
2023-11-27 02:17:53 +01:00
|
|
|
mainProgram = "l3afpad";
|
2022-07-21 13:49:18 +02:00
|
|
|
};
|
|
|
|
}
|