mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: fvwm: Update to 2.6.6.
* gnu/packages/fvwm.scm (fvwm): Update to 2.6.6. [source]: Change download location to Github.
This commit is contained in:
parent
6b287c5c35
commit
fd02719c7b
1 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -33,15 +34,16 @@ (define-module (gnu packages fvwm)
|
||||||
(define-public fvwm
|
(define-public fvwm
|
||||||
(package
|
(package
|
||||||
(name "fvwm")
|
(name "fvwm")
|
||||||
(version "2.6.5")
|
(version "2.6.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"ftp://ftp.fvwm.org/pub/fvwm/version-2/fvwm-"
|
"https://github.com/fvwmorg/fvwm/releases/download/"
|
||||||
version ".tar.bz2"))
|
"version-" (string-join (string-split version #\.) "_")
|
||||||
|
"/" name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ks8igvmzm0m0sra05k8xzc8vkqy3gv1qskl6davw1irqnarjm11"))))
|
"0b6w0vk6cpqaz0ws3vl4by0mycv33r42a0m806j2h8avy9ghipn5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl)
|
`(("perl" ,perl)
|
||||||
|
|
Loading…
Reference in a new issue