nixpkgs/pkgs/by-name/xi/xib2nib/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
654 B
Nix
Raw Normal View History

2024-01-05 20:03:40 +00:00
{ lib
, stdenv
, fetchFromGitHub
, boost
2024-01-05 20:07:17 +00:00
, plistcpp
2024-01-05 20:03:40 +00:00
, pugixml
}:
2017-04-11 08:22:32 +00:00
stdenv.mkDerivation {
pname = "xib2nib";
2024-01-05 20:03:40 +00:00
version = "0-unstable-2017-04-12";
2017-04-11 08:22:32 +00:00
src = fetchFromGitHub {
owner = "matthewbauer";
repo = "xib2nib";
2017-04-12 07:59:18 +00:00
rev = "97c6a53aab83d919805efcae33cf80690e953d1e";
2024-01-05 20:03:40 +00:00
hash = "sha256-GMf/XQYYCzuX1rcU3l7bTxhGlCnZliHtZCqf14kThCA=";
2017-04-11 08:22:32 +00:00
};
2024-01-05 20:03:40 +00:00
buildInputs = [
boost
2024-01-05 20:07:17 +00:00
plistcpp
2024-01-05 20:03:40 +00:00
pugixml
];
makeFlags = [
"PREFIX=$(out)"
];
meta = with lib; {
maintainers = with maintainers; [ matthewbauer ];
description = "Compiles CocoaTouch .xib files into .nib";
license = licenses.mit;
platforms = platforms.unix;
};
2017-04-11 08:22:32 +00:00
}