mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add cdemu-daemon.
* gnu/packages/cdrom.scm (cdemu-daemon): New variable.
This commit is contained in:
parent
4a22d71af5
commit
ba5c154e96
1 changed files with 29 additions and 0 deletions
|
@ -892,3 +892,32 @@ (define-public libmirage
|
|||
is written in C and based on GLib. Its aim is to provide uniform access to
|
||||
the data stored in various image formats.")
|
||||
(license gpl2+)))
|
||||
|
||||
(define-public cdemu-daemon
|
||||
(package
|
||||
(name "cdemu-daemon")
|
||||
(version "3.2.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://downloads.sourceforge.net/cdemu/cdemu-daemon/cdemu-daemon-"
|
||||
version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"171qqcziqgf6dd9n8xs9hc71krhjiyx9qr767s8znidyjj88hbc4"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("intltool" ,intltool)))
|
||||
(inputs
|
||||
`(("libmirage" ,libmirage)
|
||||
("glib" ,glib)
|
||||
("ao" ,ao)))
|
||||
(arguments
|
||||
;; No tests.
|
||||
'(#:tests? #f))
|
||||
(home-page "https://cdemu.sourceforge.io/")
|
||||
(synopsis "CD/DVD-ROM device emulator")
|
||||
(description "CDemu is a software suite designed to emulate an optical
|
||||
drive and disc (including CD-ROMs and DVD-ROMs).")
|
||||
(license gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue