summary refs log tree commit diff
path: root/pkgs/development/tools/misc/pkgconf
diff options
context:
space:
mode:
authorFrancesco Zanini <francesco@zanini.me>2018-11-19 13:54:25 +0100
committerFrancesco Zanini <francesco@zanini.me>2018-11-19 13:54:25 +0100
commit5c1d144074fa45edf7ae770945b1ee131abda405 (patch)
tree90aea9fa754d9dfff3c3ede9a0385c38368e7ce6 /pkgs/development/tools/misc/pkgconf
parent1ada6857e668653b6bfcc59988a922e0fc0fc6a4 (diff)
downloadnixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.tar
nixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.tar.gz
nixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.tar.bz2
nixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.tar.lz
nixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.tar.xz
nixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.tar.zst
nixpkgs-5c1d144074fa45edf7ae770945b1ee131abda405.zip
Add meta
Diffstat (limited to 'pkgs/development/tools/misc/pkgconf')
-rw-r--r--pkgs/development/tools/misc/pkgconf/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/tools/misc/pkgconf/default.nix b/pkgs/development/tools/misc/pkgconf/default.nix
index 629f0168588..fb7fb7e10c6 100644
--- a/pkgs/development/tools/misc/pkgconf/default.nix
+++ b/pkgs/development/tools/misc/pkgconf/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchgit, automake, autoconf, libtool }:
 
-# with stdenv.lib;
+with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "pkgconf-1.5.4";
@@ -19,10 +19,10 @@ stdenv.mkDerivation rec {
     ./autogen.sh
   '';
 
-  #meta = {
-  #  description = "TODO";
-  #  homepage = "TODO";
-  #  platforms = "TODO";
-  #  license = "TODO";
-  #};
+  meta = {
+    description = "Package compiler and linker metadata toolkit";
+    homepage = https://git.dereferenced.org/pkgconf/pkgconf;
+    platforms = platforms.all;
+    license = licenses.isc;
+  };
 }