about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/0ad/data.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/0ad/data.nix')
-rw-r--r--nixpkgs/pkgs/games/0ad/data.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/games/0ad/data.nix b/nixpkgs/pkgs/games/0ad/data.nix
index eeedae924405..1bebf922c48d 100644
--- a/nixpkgs/pkgs/games/0ad/data.nix
+++ b/nixpkgs/pkgs/games/0ad/data.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, zeroad-unwrapped }:
+{ lib, stdenv, fetchurl, zeroad-unwrapped }:
 
 stdenv.mkDerivation rec {
   pname = "0ad-data";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
     cp -r binaries/data $out/share/0ad/
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A free, open-source game of ancient warfare -- data files";
     homepage = "https://play0ad.com/";
     license = licenses.cc-by-sa-30;