summary refs log tree commit diff
path: root/pkgs/games/enigma
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-02-20 20:11:42 -0800
committerCole Helbling <cole.e.helbling@outlook.com>2021-02-20 20:18:02 -0800
commitb62c3665766f99208fa1d3e4c61b41fefa11a6c2 (patch)
treef51227a94a51441716ef73b2f6d3d621d6e2d16b /pkgs/games/enigma
parentbec87490745aeba6dc1cf10a70d3a1de5424f2f9 (diff)
downloadnixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.tar
nixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.tar.gz
nixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.tar.bz2
nixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.tar.lz
nixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.tar.xz
nixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.tar.zst
nixpkgs-b62c3665766f99208fa1d3e4c61b41fefa11a6c2.zip
enigma: stdenv.lib -> lib
Diffstat (limited to 'pkgs/games/enigma')
-rw-r--r--pkgs/games/enigma/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/enigma/default.nix b/pkgs/games/enigma/default.nix
index 1912f870275..1c623e36ad8 100644
--- a/pkgs/games/enigma/default.nix
+++ b/pkgs/games/enigma/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg_utils, hicolor-icon-theme }:
+{ lib, stdenv, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg_utils, hicolor-icon-theme }:
 stdenv.mkDerivation rec {
   pname = "enigma";
   version = "1.30-alpha";
@@ -18,12 +18,12 @@ stdenv.mkDerivation rec {
 
   postInstall = ''
     rm -r $out/include
-    wrapProgram $out/bin/enigma --prefix PATH : "${stdenv.lib.makeBinPath [ xdg_utils ]}"
+    wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg_utils ]}"
   '';
 
   meta = with lib; {
     description = "Puzzle game inspired by Oxyd on the Atari ST and Rock'n'Roll on the Amiga";
-    license = with licenses; [ gpl2 free ];  # source + bundles libs + art
+    license = with licenses; [ gpl2 free ]; # source + bundles libs + art
     platforms = platforms.unix;
     broken = stdenv.targetPlatform.isDarwin;
     maintainers = with maintainers; [ iblech ];