2024-05-15 15:35:15 +00:00
|
|
|
{ lib, fetchurl
|
|
|
|
, pname, version, hash
|
|
|
|
}:
|
|
|
|
|
|
|
|
{
|
|
|
|
inherit pname version;
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchurl {
|
2022-01-25 03:21:06 +00:00
|
|
|
url = "mirror://sourceforge/cdemu/${pname}-${version}.tar.xz";
|
2024-05-15 15:35:15 +00:00
|
|
|
inherit hash;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A suite of tools for emulating optical drives and discs";
|
|
|
|
longDescription = ''
|
|
|
|
CDEmu consists of:
|
|
|
|
|
|
|
|
- a kernel module implementing a virtual drive-controller
|
|
|
|
- libmirage which is a software library for interpreting optical disc images
|
|
|
|
- a daemon which emulates the functionality of an optical drive+disc
|
|
|
|
- textmode and GTK clients for controlling the emulator
|
|
|
|
- an image analyzer to view the structure of image files
|
|
|
|
|
|
|
|
Optical media emulated by CDemu can be mounted within Linux. Automounting is also allowed.
|
|
|
|
'';
|
2021-09-18 10:52:07 +00:00
|
|
|
homepage = "https://cdemu.sourceforge.io/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2021-01-17 00:15:33 +00:00
|
|
|
maintainers = with lib.maintainers; [ bendlas ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2024-05-15 15:35:15 +00:00
|
|
|
}
|