xib2nib: move nsplist, plistcpp to own folder

These libraries could be used by other packages so list them in
all-packages.nix as well.
This commit is contained in:
Matthew Bauer 2017-04-12 03:28:33 -05:00
parent d697e5c8ee
commit 1781ec934f
No known key found for this signature in database
GPG Key ID: E04D0AD9469141C3
4 changed files with 8 additions and 10 deletions

View File

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation {
name = "nsplist-713decf";
name = "NSPlist-713decf";
src = fetchFromGitHub {
owner = "matthewbauer";

View File

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, boost, NSPlist, pugixml }:
stdenv.mkDerivation {
name = "plistcpp-11615d";
name = "PlistCpp-11615d";
src = fetchFromGitHub {
owner = "matthewbauer";

View File

@ -1,11 +1,4 @@
{ stdenv, callPackage, fetchFromGitHub, pugixml, boost }:
let
NSPlist = callPackage ./nsplist.nix { };
PlistCpp = callPackage ./plist-cpp.nix { inherit NSPlist; };
in
{ stdenv, callPackage, fetchFromGitHub, pugixml, boost, PlistCpp }:
stdenv.mkDerivation {
name = "xib2nib-730e177";

View File

@ -18410,5 +18410,10 @@ with pkgs;
messenger-for-desktop = callPackage ../applications/networking/instant-messengers/messenger-for-desktop {};
NSPlist = callPackage ../development/libraries/NSPlist {};
PlistCpp = callPackage ../development/libraries/PlistCpp {};
xib2nib = callPackage ../development/tools/xib2nib {};
}