packages: syndication: Remove newsraft (upstreamed)
parent
d555ff2bff
commit
90639dc495
|
@ -1,52 +0,0 @@
|
||||||
(define-module (radix packages syndication)
|
|
||||||
#:use-module (guix packages)
|
|
||||||
#:use-module (guix download)
|
|
||||||
#:use-module (guix gexp)
|
|
||||||
#:use-module (guix utils)
|
|
||||||
#:use-module (guix git-download)
|
|
||||||
#:use-module (guix build-system gnu)
|
|
||||||
#:use-module (gnu packages base)
|
|
||||||
#:use-module (gnu packages bash)
|
|
||||||
#:use-module (gnu packages curl)
|
|
||||||
#:use-module (gnu packages gnome)
|
|
||||||
#:use-module (gnu packages man)
|
|
||||||
#:use-module (gnu packages ncurses)
|
|
||||||
#:use-module (gnu packages pkg-config)
|
|
||||||
#:use-module (gnu packages sqlite)
|
|
||||||
#:use-module (gnu packages web)
|
|
||||||
#:use-module (gnu packages xml)
|
|
||||||
#:use-module ((guix licenses)
|
|
||||||
#:prefix license:))
|
|
||||||
|
|
||||||
;; Thanks to nckx, rekado and lechner for the help :)
|
|
||||||
(define-public newsraft
|
|
||||||
(package
|
|
||||||
(name "newsraft")
|
|
||||||
(version "0.25")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://codeberg.org/grisha/newsraft")
|
|
||||||
(commit (string-append "newsraft-" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"138x5z5c0x8wksqpmcc3zij9xq4n6wd64cqms3qbs27fzy7a25c5"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(native-inputs (list gnu-make pkg-config scdoc))
|
|
||||||
(inputs (list curl expat gumbo-parser ncurses sqlite yajl))
|
|
||||||
(propagated-inputs (list libnotify))
|
|
||||||
(arguments
|
|
||||||
(list #:tests? #f
|
|
||||||
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
|
||||||
(string-append "PREFIX=" #$output)
|
|
||||||
"CFLAGS=-DCURL_WRITEFUNC_ERROR=0xFFFFFFFF")
|
|
||||||
#:phases #~(modify-phases %standard-phases
|
|
||||||
(delete 'configure))))
|
|
||||||
(home-page "https://codeberg.org/grisha/newsraft")
|
|
||||||
(synopsis
|
|
||||||
"Newsraft is a ncurses feed reader greatly inspired by newsboat.")
|
|
||||||
(description
|
|
||||||
"Newsraft is a feed reader with ncurses user interface. It is
|
|
||||||
greatly inspired by Newsboat and tries to be its lightweight counterpart.")
|
|
||||||
(license license:isc)))
|
|
Loading…
Reference in New Issue