xib2nib: add meta

also:
- NSPlist
- PlistCpp
This commit is contained in:
Matthew Bauer 2017-04-12 20:07:55 -05:00
parent 4672fe6998
commit 9e5fe7738a
No known key found for this signature in database
GPG Key ID: E04D0AD9469141C3
3 changed files with 22 additions and 0 deletions

View File

@ -11,4 +11,11 @@ stdenv.mkDerivation {
};
buildInputs = [ cmake ];
meta = with stdenv.lib; {
maintainers = with maintainers; [ matthewbauer ];
description = "Parses .plist files";
license = licenses.mit;
platforms = platforms.unix;
};
}

View File

@ -11,4 +11,12 @@ stdenv.mkDerivation {
};
buildInputs = [ cmake boost NSPlist pugixml ];
meta = with stdenv.lib; {
maintainers = with maintainers; [ matthewbauer ];
description = "CPP bindings for Plist";
license = licenses.mit;
platforms = platforms.unix;
};
}

View File

@ -12,4 +12,11 @@ stdenv.mkDerivation {
buildInputs = [ PlistCpp pugixml boost ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
maintainers = with maintainers; [ matthewbauer ];
description = "Compiles CocoaTouch .xib files into .nib";
license = licenses.mit;
platforms = platforms.unix;
};
}