about summary refs log tree commit diff
path: root/pkgs/development/tools/xib2nib/default.nix
blob: 5f516ee97cbed2ed8d83b249c6a99df2442749bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, callPackage, fetchFromGitHub, pugixml, boost, PlistCpp }:

stdenv.mkDerivation {
  name = "xib2nib-730e177";

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

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