Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 25 lines 670 B view raw
1{ lib, stdenv, fetchurl, autoreconfHook, popt, libiconv }: 2 3stdenv.mkDerivation rec { 4 pname = "libnatspec"; 5 version = "0.3.0"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/natspec/${pname}-${version}.tar.bz2"; 9 sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7"; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook ]; 13 14 buildInputs = [ popt ]; 15 16 propagatedBuildInputs = [ libiconv ]; 17 18 meta = with lib; { 19 homepage = "https://natspec.sourceforge.net/"; 20 description = "Library intended to smooth national specificities in using of programs"; 21 mainProgram = "natspec"; 22 platforms = platforms.unix; 23 license = licenses.lgpl21; 24 }; 25}