mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
69 lines
1.6 KiB
Nix
69 lines
1.6 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, gtk3
|
|
, which
|
|
, pkgconfig
|
|
, intltool
|
|
, file
|
|
, libintl
|
|
, hicolor-icon-theme
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geany";
|
|
version = "1.37.1";
|
|
|
|
outputs = [ "out" "dev" "doc" "man" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://download.geany.org/${pname}-${version}.tar.bz2";
|
|
sha256 = "060sachn33xpx3a609f09y97qq5ky17gvv686zbvrn618ij7bi8q";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
libintl
|
|
which
|
|
file
|
|
hicolor-icon-theme
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Small and lightweight IDE";
|
|
longDescription = ''
|
|
Geany is a small and lightweight Integrated Development Environment.
|
|
It was developed to provide a small and fast IDE, which has only a few dependencies from other packages.
|
|
Another goal was to be as independent as possible from a special Desktop Environment like KDE or GNOME.
|
|
Geany only requires the GTK runtime libraries.
|
|
Some basic features of Geany:
|
|
- Syntax highlighting
|
|
- Code folding
|
|
- Symbol name auto-completion
|
|
- Construct completion/snippets
|
|
- Auto-closing of XML and HTML tags
|
|
- Call tips
|
|
- Many supported filetypes including C, Java, PHP, HTML, Python, Perl, Pascal (full list)
|
|
- Symbol lists
|
|
- Code navigation
|
|
- Build system to compile and execute your code
|
|
- Simple project management
|
|
- Plugin interface
|
|
'';
|
|
homepage = "https://www.geany.org/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ frlan ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|