ldid: init at 2.1.5
This commit is contained in:
parent
59acc59808
commit
2b0dc508d7
2 changed files with 71 additions and 0 deletions
67
pkgs/development/tools/ldid/default.nix
Normal file
67
pkgs/development/tools/ldid/default.nix
Normal file
|
@ -0,0 +1,67 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, callPackage
|
||||
, fetchgit
|
||||
, libplist
|
||||
, libxml2
|
||||
, openssl_1_1
|
||||
, CoreFoundation
|
||||
, Security
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ldid";
|
||||
version = "2.1.5";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.saurik.com/ldid.git";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-RM5pU3mrgyvwNfWKNvCT3UYVGKtVhD7ifgp8fq9xXiM=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
buildInputs = [
|
||||
libplist
|
||||
libxml2
|
||||
openssl_1_1
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
CoreFoundation
|
||||
Security
|
||||
];
|
||||
|
||||
NIX_LDFLAGS = [
|
||||
"-lcrypto"
|
||||
"-lplist-2.0"
|
||||
"-lxml2"
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
"-framework CoreFoundation"
|
||||
"-framework Security"
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
cc -c -o lookup2.o lookup2.c -I.
|
||||
c++ -std=c++11 -o ldid lookup2.o ldid.cpp -I. ${toString NIX_LDFLAGS}
|
||||
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm755 {,$out/bin/}ldid
|
||||
ln -s $out/bin/ldid $out/bin/ldid2
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Link Identity Editor";
|
||||
homepage = "https://cydia.saurik.com/info/ldid/";
|
||||
maintainers = with maintainers; [ wegank ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.agpl3Only;
|
||||
};
|
||||
}
|
|
@ -38068,6 +38068,10 @@ with pkgs;
|
|||
|
||||
lc3tools = callPackage ../development/tools/lc3tools {};
|
||||
|
||||
ldid = callPackage ../development/tools/ldid {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||
};
|
||||
|
||||
xcolor = callPackage ../tools/graphics/xcolor { };
|
||||
|
||||
xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };
|
||||
|
|
Loading…
Reference in a new issue