about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-04-02 23:19:40 +0200
committerGitHub <noreply@github.com>2017-04-02 23:19:40 +0200
commit97d35590c92ed542424dc802d3513d7e46c0af96 (patch)
tree19905080ff9cac24573cc785fe55a51f9c896977 /pkgs/applications
parent58224f943080db0aa95834e76210c9a7248105b7 (diff)
parent35d23911e0ff4971da225da8c0c213d731b02430 (diff)
downloadnixlib-97d35590c92ed542424dc802d3513d7e46c0af96.tar
nixlib-97d35590c92ed542424dc802d3513d7e46c0af96.tar.gz
nixlib-97d35590c92ed542424dc802d3513d7e46c0af96.tar.bz2
nixlib-97d35590c92ed542424dc802d3513d7e46c0af96.tar.lz
nixlib-97d35590c92ed542424dc802d3513d7e46c0af96.tar.xz
nixlib-97d35590c92ed542424dc802d3513d7e46c0af96.tar.zst
nixlib-97d35590c92ed542424dc802d3513d7e46c0af96.zip
Merge pull request #24567 from ndowens/doomseeker
doomseeker: Cosmetic cleanup
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/doomseeker/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/doomseeker/default.nix b/pkgs/applications/misc/doomseeker/default.nix
index a8d35680dbde..61b0357bb9d0 100644
--- a/pkgs/applications/misc/doomseeker/default.nix
+++ b/pkgs/applications/misc/doomseeker/default.nix
@@ -18,11 +18,11 @@ stdenv.mkDerivation rec {
     substituteInPlace src/core/CMakeLists.txt --replace /usr/share/applications "$out"/share/applications
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://doomseeker.drdteam.org/;
     description = "Multiplayer server browser for many Doom source ports";
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = with stdenv.lib.maintainers; [ MP2E ];
+    license = licenses.gpl2;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.MP2E ];
   };
 }