nixpkgs/pkgs/development/tools/xib2nib/default.nix

23 lines
616 B
Nix
Raw Normal View History

{ stdenv, callPackage, fetchFromGitHub, pugixml, boost, PlistCpp }:
2017-04-11 11:22:32 +03:00
stdenv.mkDerivation {
name = "xib2nib-730e177";
src = fetchFromGitHub {
owner = "matthewbauer";
repo = "xib2nib";
2017-04-12 10:59:18 +03:00
rev = "97c6a53aab83d919805efcae33cf80690e953d1e";
sha256 = "08442f4xg7racknj35nr56a4c62gvdgdw55pssbkn2qq0rfzziqq";
2017-04-11 11:22:32 +03:00
};
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;
};
2017-04-11 11:22:32 +03:00
}