nixpkgs/pkgs/by-name/gt/gtksheet/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

51 lines
840 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, gobject-introspection
, gtk-doc
, pkg-config
, atk
, cairo
, glade
, gtk3
, pango
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gtksheet";
version = "4.3.13";
src = fetchFromGitHub {
owner = "fpaquet";
repo = "gtksheet";
rev = "V${finalAttrs.version}";
hash = "sha256-2JwkyT6OBApfgyfNSksbrusF8WcZ4v3tlbblDJJtN2k=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
gobject-introspection
gtk-doc
pkg-config
];
buildInputs = [
atk
cairo
glade
gtk3
pango
];
meta = {
description = "Spreadsheet widget for GTK+";
homepage = "https://fpaquet.github.io/gtksheet/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ wegank ];
platforms = lib.platforms.unix;
};
})