ch9344: 2.0 -> 0-unstable-2024-11-15 (#354536)
[NixPkgs.git] / pkgs / applications / emulators / cdemu / common-drv-attrs.nix
blobf6dc006ad0561113d20634b374f6e6238c71ada4
2   lib,
3   fetchurl,
4   pname,
5   version,
6   hash,
7 }:
10   inherit pname version;
11   src = fetchurl {
12     url = "mirror://sourceforge/cdemu/${pname}-${version}.tar.xz";
13     inherit hash;
14   };
15   meta = with lib; {
16     description = "Suite of tools for emulating optical drives and discs";
17     longDescription = ''
18       CDEmu consists of:
20       - a kernel module implementing a virtual drive-controller
21       - libmirage which is a software library for interpreting optical disc images
22       - a daemon which emulates the functionality of an optical drive+disc
23       - textmode and GTK clients for controlling the emulator
24       - an image analyzer to view the structure of image files
26       Optical media emulated by CDemu can be mounted within Linux. Automounting is also allowed.
27     '';
28     homepage = "https://cdemu.sourceforge.io/";
29     license = licenses.gpl2Plus;
30     platforms = platforms.linux;
31     maintainers = with lib.maintainers; [ bendlas ];
32   };