libnatspec: 0.3.0 -> 0.3.3

This commit is contained in:
Thomas Butter
2026-05-19 19:29:03 +00:00
parent 62df32eeb9
commit 2467b96f14

View File

@@ -1,7 +1,7 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitHub,
autoreconfHook,
popt,
libiconv,
@@ -9,11 +9,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "libnatspec";
version = "0.3.0";
version = "0.3.3";
src = fetchurl {
url = "mirror://sourceforge/natspec/libnatspec-${finalAttrs.version}.tar.bz2";
sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7";
src = fetchFromGitHub {
owner = "Etersoft";
repo = "libnatspec";
rev = "0.3.3-alt1";
hash = "sha256-lg3kjrvv7G+nX6xlR7TQKvXqQJFcQTHarSpD0qYLZsw=";
};
nativeBuildInputs = [ autoreconfHook ];
@@ -27,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: {
propagatedBuildInputs = [ libiconv ];
meta = {
homepage = "https://natspec.sourceforge.net/";
homepage = "https://github.com/Etersoft/libnatspec";
description = "Library intended to smooth national specificities in using of programs";
mainProgram = "natspec";
platforms = lib.platforms.unix;