summary refs log blame commit diff
path: root/pkgs/development/tools/xib2nib/default.nix
blob: b579e3674334f263489cc8bb501f24d9e962229e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                           

                     

                                  



                           

                                                                    



                                           
 
                    




                                                             
 
{ lib, stdenv, fetchFromGitHub, pugixml, boost, PlistCpp }:

stdenv.mkDerivation {
  pname = "xib2nib";
  version = "unstable-2017-04-12";

  src = fetchFromGitHub {
    owner = "matthewbauer";
    repo = "xib2nib";
    rev = "97c6a53aab83d919805efcae33cf80690e953d1e";
    sha256 = "08442f4xg7racknj35nr56a4c62gvdgdw55pssbkn2qq0rfzziqq";
  };

  buildInputs = [ PlistCpp pugixml boost ];
  makeFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    maintainers = with maintainers; [ matthewbauer ];
    description = "Compiles CocoaTouch .xib files into .nib";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}