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