summary refs log tree commit diff
path: root/pkgs/development/tools/ibtool/default.nix
blob: 17b9a77a7a18580dd55af474bcd9b9640e290e09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, callPackage, fetchFromGitHub, pugixml, boost }:

let

  NSPlist = callPackage ./nsplist.nix { };
  PlistCpp = callPackage ./plist-cpp.nix { inherit NSPlist; };

in

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

  src = fetchFromGitHub {
    owner = "matthewbauer";
    repo = "xib2nib";
    rev = "636fe783e8625bbdd7bfeaf85470ba3eb7b90359";
    sha256 = "08fhx8rww95h1fpl1cwhd82bcqv1k51k542v4kawjf8w814g5y1c";
  };

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