summary refs log blame commit diff
path: root/pkgs/development/libraries/NSPlist/default.nix
blob: bfee9961984014510acb56e4796077b75969f989 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


                                   
                           








                                                                    






                                                     
 
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation {
  name = "NSPlist-713decf";

  src = fetchFromGitHub {
    owner = "matthewbauer";
    repo = "NSPlist";
    rev = "713decf06c1ef6c39a707bc99eb45ac9925f2b8a";
    sha256 = "0v4yfiwfd08hmh2ydgy6pnmlzjbd96k78dsla9pfd56ka89aw74r";
  };

  buildInputs = [ cmake ];

  meta = with stdenv.lib; {
    maintainers = with maintainers; [ matthewbauer ];
    description = "Parses .plist files";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}