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