about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/bochs/default.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-09-11 21:27:54 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-09-11 21:27:54 -0700
commit686a139f29b7368e3f150d488ae7f965b2d0ff5d (patch)
tree4d584e90bc63c4dfc2cd8a944da4805218df1c1c /pkgs/applications/virtualization/bochs/default.nix
parentebc62d4e91829bc495b9c0477b04f0efb2dd3498 (diff)
parentb39e5ce957175d939a8f4d20bca406d8880dc1af (diff)
downloadnixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.tar
nixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.tar.gz
nixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.tar.bz2
nixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.tar.lz
nixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.tar.xz
nixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.tar.zst
nixlib-686a139f29b7368e3f150d488ae7f965b2d0ff5d.zip
Merge pull request #4030 from AndersonTorres/small-fixups
Small style fixups
Diffstat (limited to 'pkgs/applications/virtualization/bochs/default.nix')
-rw-r--r--pkgs/applications/virtualization/bochs/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/applications/virtualization/bochs/default.nix b/pkgs/applications/virtualization/bochs/default.nix
index 74ce7bdfcaa6..95db0dd67a1c 100644
--- a/pkgs/applications/virtualization/bochs/default.nix
+++ b/pkgs/applications/virtualization/bochs/default.nix
@@ -5,8 +5,7 @@
 , termSupport ? true , ncurses ? null, readline ? null
 , wxSupport ? false, wxGTK ? null
 , wgetSupport ? false, wget ? null
-, curlSupport ? false, curl ? null
-}:
+, curlSupport ? false, curl ? null }:
 
 assert sdlSupport -> (SDL != null);
 assert termSupport -> (ncurses != null&& readline != null);
@@ -52,15 +51,19 @@ stdenv.mkDerivation rec {
 
   NIX_CFLAGS_COMPILE="-I${gtk}/include/gtk-2.0/";
 	
-  meta = {
+  meta = with stdenv.lib; {
     description = "An open-source IA-32 (x86) PC emulator";
     longDescription = ''
-    Bochs is an open-source (LGPL), highly portable IA-32 PC emulator, written in C++, that runs on most popular platforms. It includes emulation of the Intel x86 CPU, common I/O devices, and a custom BIOS.
+    Bochs is an open-source (LGPL), highly portable IA-32 PC emulator,
+    written in C++, that runs on most popular platforms. It includes
+    emulation of the Intel x86 CPU, common I/O devices, and a custom
+    BIOS.
     '';
     homepage = http://bochs.sourceforge.net/;
-    license = stdenv.lib.licenses.lgpl2Plus;
-    maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.lgpl2Plus;
+    maintainers = [ maintainers.AndersonTorres ];
+    platforms = platforms.linux;
   };
 }
+
 # TODO: study config.bochs.* implementation (like config.ffmpeg.* options)