about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/liquidwar/5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/liquidwar/5.nix')
-rw-r--r--nixpkgs/pkgs/games/liquidwar/5.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/games/liquidwar/5.nix b/nixpkgs/pkgs/games/liquidwar/5.nix
index 3d8cf3840f8b..e95371ec5eaf 100644
--- a/nixpkgs/pkgs/games/liquidwar/5.nix
+++ b/nixpkgs/pkgs/games/liquidwar/5.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, allegro }:
+{ lib, stdenv, fetchurl, allegro }:
 stdenv.mkDerivation rec {
   version = "5.6.5";
   pname = "liquidwar5";
@@ -9,14 +9,14 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ allegro ];
 
-  configureFlags = stdenv.lib.optional stdenv.isx86_64 "--disable-asm";
+  configureFlags = lib.optional stdenv.isx86_64 "--disable-asm";
 
   hardeningDisable = [ "format" ];
 
   NIX_CFLAGS_COMPILE = [ "-lm" ];
 
-  meta = with stdenv.lib; {
-    description = ''The classic version of a quick tactics game LiquidWar'';
+  meta = with lib; {
+    description = "The classic version of a quick tactics game LiquidWar";
     maintainers = [ maintainers.raskin ];
     license = licenses.gpl2Plus;
     platforms = platforms.linux;