Files
nixpkgs/pkgs/development/libraries/libnatspec/default.nix
T
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

26 lines
670 B
Nix

{ lib, stdenv, fetchurl, autoreconfHook, popt, libiconv }:
stdenv.mkDerivation rec {
pname = "libnatspec";
version = "0.3.0";
src = fetchurl {
url = "mirror://sourceforge/natspec/${pname}-${version}.tar.bz2";
sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ popt ];
propagatedBuildInputs = [ libiconv ];
meta = with lib; {
homepage = "https://natspec.sourceforge.net/";
description = "Library intended to smooth national specificities in using of programs";
mainProgram = "natspec";
platforms = platforms.unix;
license = licenses.lgpl21;
};
}