From b04da30d6554063e3483c45b2728dc86fd1935e5 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Mon, 8 Oct 2018 23:05:56 +0200 Subject: [PATCH] libungif: add license + description --- pkgs/development/libraries/giflib/libungif.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/giflib/libungif.nix b/pkgs/development/libraries/giflib/libungif.nix index 357ca751ccf1..6336d30aebad 100644 --- a/pkgs/development/libraries/giflib/libungif.nix +++ b/pkgs/development/libraries/giflib/libungif.nix @@ -9,7 +9,9 @@ stdenv.mkDerivation { hardeningDisable = [ "format" ]; - meta = { - platforms = stdenv.lib.platforms.unix; + meta = with stdenv.lib; { + description = "Library and utilities for processing GIFs"; + platforms = platforms.unix; + license = licenses.mit; }; }