From 9e549633827717d1bf6df1ef86580f88d3584b55 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Fri, 12 Feb 2021 14:41:11 +0100 Subject: gnu: flrig: Use git repository. The tarballs of older versions are not kept on the website. * gnu/packages/radio.scm (flrig)[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 3ac3d65e13..2b88db41c1 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -623,14 +623,18 @@ hardware.") (version "1.3.52") (source (origin - (method url-fetch) - (uri (string-append "http://www.w1hkj.com/files/flrig/flrig-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://git.code.sf.net/p/fldigi/flrig") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "18c154080vl25cy4l5amh96abm6kzm7mzld9h58pabc28yqq8zl8")))) + (base32 "0vxn1wy5b2zfq20k93rfgq34m1nd3mxd74h8l98f90d85fhcqggy")))) (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