12 stdenv.mkDerivation rec {
17 url = "git://git.saurik.com/ldid.git";
19 sha256 = "sha256-RM5pU3mrgyvwNfWKNvCT3UYVGKtVhD7ifgp8fq9xXiM=";
28 ] ++ lib.optionals stdenv.isDarwin [
37 ] ++ lib.optionals stdenv.isDarwin [
38 "-framework CoreFoundation"
45 cc -c -o lookup2.o lookup2.c -I.
46 c++ -std=c++11 -o ldid lookup2.o ldid.cpp -I. ${toString NIX_LDFLAGS}
54 install -Dm755 {,$out/bin/}ldid
55 ln -s $out/bin/ldid $out/bin/ldid2
61 description = "Link Identity Editor";
62 homepage = "https://cydia.saurik.com/info/ldid/";
63 maintainers = with maintainers; [ wegank ];
64 platforms = platforms.unix;
65 license = licenses.agpl3Only;