3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #202613 from msm-code/master

ursadb: 1.2.0 -> 1.5.0
This commit is contained in:
Mario Rodas 2022-11-29 20:54:40 -05:00 committed by GitHub
commit af04c41965
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,40 +1,31 @@
{ lib, stdenv, fetchFromGitHub, cmake, zeromq, cppzmq }:
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ursadb";
version = "1.2.0";
version = "1.5.0";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = "ursadb";
rev = "v${version}";
hash = "sha256-/EK1CKJ0IR7fkKSpQkONbWcz6uhUoAwK430ljNYsV5U=";
rev = "v${finalAttrs.version}";
hash = "sha256-JssL1Yd+2CPy9fDPJnstiRucdy6TyUdb0Q6xa160CLM=";
fetchSubmodules = true;
};
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace \
"add_executable(ursadb_test Tests.cpp)" "" \
--replace \
"target_link_libraries(ursadb_test ursa)" ""
'';
installPhase = ''
mkdir -p $out/bin
cp ursadb $out/bin/
cp ursadb_new $out/bin/
cp ursadb_trim $out/bin/
--replace "add_executable(ursadb_test src/Tests.cpp)" "" \
--replace "target_link_libraries(ursadb_test ursa)" "" \
--replace "target_enable_ipo(ursadb_test)" "" \
--replace "target_clangformat_setup(ursadb_test)" "" \
--replace 'target_include_directories(ursadb_test PUBLIC ${"$"}{CMAKE_SOURCE_DIR})' "" \
--replace "ursadb_test" ""
'';
nativeBuildInputs = [
cmake
];
buildInputs = [
zeromq
cppzmq
];
meta = with lib; {
homepage = "https://github.com/CERT-Polska/ursadb";
description = "Trigram database written in C++, suited for malware indexing";
@ -43,4 +34,4 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
broken = stdenv.isDarwin;
};
}
})