ursadb: init at v1.2.0

This commit is contained in:
msm 2020-04-01 00:54:17 +02:00 committed by msm
parent 0a7c10f701
commit 5160beb886
No known key found for this signature in database
GPG key ID: 9071B2C50B41E7BB
3 changed files with 43 additions and 0 deletions

View file

@ -5186,6 +5186,12 @@
githubId = 133448;
name = "Mikołaj Siedlarek";
};
msm = {
email = "msm@tailcall.net";
github = "msm-code";
githubId = 7026881;
name = "Jarosław Jedynak";
};
mstarzyk = {
email = "mstarzyk@gmail.com";
github = "mstarzyk";

View file

@ -0,0 +1,35 @@
{ stdenv, fetchurl, cmake, zeromq, cppzmq }:
stdenv.mkDerivation {
name = "ursadb";
version = "1.2.0";
src = fetchurl {
url = "https://github.com/CERT-Polska/ursadb/archive/v1.2.0.tar.gz";
sha256 = "10dax3mswq0x4cfrpi31b7ii7bxl536wz1j11b7f5c0zw9pjxzym";
};
installPhase = ''
mkdir -p $out/bin
cp ursadb $out/bin/
cp ursadb_new $out/bin/
cp ursadb_trim $out/bin/
'';
nativeBuildInputs = [
cmake
];
buildInputs = [
zeromq
cppzmq
];
meta = with stdenv.lib; {
homepage = "https://github.com/CERT-Polska/ursadb";
description = "Trigram database written in C++, suited for malware indexing";
license = licenses.bsd3;
maintainers = with maintainers; [ msm ];
platforms = platforms.unix;
};
}

View file

@ -7156,6 +7156,8 @@ in
urlview = callPackage ../applications/misc/urlview {};
ursadb = callPackage ../servers/ursadb {};
usbmuxd = callPackage ../tools/misc/usbmuxd {};
usync = callPackage ../applications/misc/usync { };