lol

createrepo_c: add meta and myself as a maintainer

+8
+8
pkgs/tools/package-management/createrepo_c/default.nix
··· 23 23 ''; 24 24 25 25 buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bashCompletion ]; 26 + 27 + meta = with stdenv.lib; { 28 + description = "C implementation of createrepo"; 29 + homepage = "http://rpm-software-management.github.io/createrepo_c/"; 30 + license = licenses.gpl2; 31 + platforms = platforms.linux; 32 + maintainers = with maintainers; [ copumpkin ]; 33 + }; 26 34 } 27 35