From 689b525db0a9f7dcc6e4cd5ba1ca4fbc06162ccb Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Fri, 12 Feb 2021 14:54:00 +0100 Subject: gnu: flwrap: Use git repository. The tarballs of older versions are not kept on the website. * gnu/packages/radio.scm (flwrap)[source]: Switch to git repository. [native-inputs]: Add autoconf and automake. --- gnu/packages/radio.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 53c9d20ac0..55756c5e93 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -686,14 +686,18 @@ or USB connection.") (version "1.3.5") (source (origin - (method url-fetch) - (uri (string-append "http://www.w1hkj.com/files/flwrap/flwrap-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://git.code.sf.net/p/fldigi/flwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "0qqivqkkravcg7j45740xfky2q3k7czqpkj6y364qff424q2pppg")))) + (base32 "0xkhr82smfr7wpb9xl05wf7bz3vi2mr4xkcr2s8v6mblhgsdhqwg")))) (build-system gnu-build-system) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config))) (inputs `(("fltk" ,fltk) ("libx11" ,libx11) -- cgit v1.2.3