Commit 7a546620 authored by Philip Taron's avatar Philip Taron Committed by Valentin Gagarin
Browse files

Avoid top-level `with ...;` in pkgs/games/dwarf-fortress/twbt/default.nix

parent 118bbb8b
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -5,9 +5,15 @@
, dfVersion
}:

with lib;

let
  inherit (lib)
    getAttr
    hasAttr
    licenses
    maintainers
    platforms
    ;

  twbt-releases = {
    "0.44.10" = {
      twbtRelease = "6.49";
@@ -75,7 +81,7 @@ stdenvNoCC.mkDerivation rec {
    cp -a *.png $art/data/art/
  '';

  meta = with lib; {
  meta = {
    description = "A plugin for Dwarf Fortress / DFHack that improves various aspects the game interface";
    maintainers = with maintainers; [ Baughn numinit ];
    license = licenses.mit;