2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pugixml, boost, PlistCpp }:
|
2017-04-11 09:22:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2021-06-20 11:34:30 +01:00
|
|
|
pname = "xib2nib";
|
|
|
|
version = "unstable-2017-04-12";
|
2017-04-11 09:22:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matthewbauer";
|
|
|
|
repo = "xib2nib";
|
2017-04-12 08:59:18 +01:00
|
|
|
rev = "97c6a53aab83d919805efcae33cf80690e953d1e";
|
|
|
|
sha256 = "08442f4xg7racknj35nr56a4c62gvdgdw55pssbkn2qq0rfzziqq";
|
2017-04-11 09:22:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ PlistCpp pugixml boost ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2017-04-13 02:07:55 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-04-13 02:07:55 +01:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
description = "Compiles CocoaTouch .xib files into .nib";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2017-04-11 09:22:32 +01:00
|
|
|
}
|