summary refs log tree commit diff
path: root/pkgs/misc/emulators/cdemu
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-04-30 17:05:14 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2015-04-30 18:17:42 +0200
commitbf7ad2d84fc8244a61fd65b69a2dda0640c54df1 (patch)
tree2b5773648e998a9a2484bcae479be4e8d26446ca /pkgs/misc/emulators/cdemu
parent6524f969e552168846fdd63e6f1b41e881dcb8fe (diff)
downloadnixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.tar
nixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.tar.gz
nixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.tar.bz2
nixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.tar.lz
nixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.tar.xz
nixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.tar.zst
nixlib-bf7ad2d84fc8244a61fd65b69a2dda0640c54df1.zip
meta.description fixups
Mostly scripted substitutions with a couple of subjective enhancements.
Diffstat (limited to 'pkgs/misc/emulators/cdemu')
-rw-r--r--pkgs/misc/emulators/cdemu/base.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/misc/emulators/cdemu/base.nix b/pkgs/misc/emulators/cdemu/base.nix
index 58727f10ef19..d7c91169ed3d 100644
--- a/pkgs/misc/emulators/cdemu/base.nix
+++ b/pkgs/misc/emulators/cdemu/base.nix
@@ -16,8 +16,8 @@ in stdenv.mkDerivation ({
   configurePhase = ''
     cmake ../${name} -DCMAKE_INSTALL_PREFIX=$out -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_RPATH=ON
   '';
-  meta = {
-    description = "A Software suite designed to emulate an optical drive and disc (including CD-ROMs and DVD-ROMs) on the Linux operating system";
+  meta = with stdenv.lib; {
+    description = "A suite of tools for emulating optical drives and discs";
     longDescription = ''
       CDEmu consists of:
 
@@ -29,9 +29,9 @@ in stdenv.mkDerivation ({
 
       Optical media emulated by CDemu can be mounted within Linux. Automounting is also allowed.
     '';
-    homepage = "http://cdemu.sourceforge.net/";
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.linux;
+    homepage = http://cdemu.sourceforge.net/;
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
     maintainers = [ "Rok Mandeljc <mrok AT users DOT sourceforge DOT net>" ];
   };
 } // drvParams)