571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
913 B
Nix
40 lines
913 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
libpcap,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dnsmonster";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mosajjal";
|
|
repo = "dnsmonster";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-0WHTrqnc3vYQro+nSsQipAPVymR8L4uOwtd9GJHxhVM=";
|
|
};
|
|
|
|
vendorHash = "sha256-QCG/rhs4Y3lLDVU15cBNUZqbKc4faNAqKMhMOFwK2SY=";
|
|
|
|
buildInputs = [ libpcap ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/mosajjal/dnsmonster/util.releaseVersion=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Passive DNS Capture and Monitoring Toolkit";
|
|
homepage = "https://github.com/mosajjal/dnsmonster";
|
|
changelog = "https://github.com/mosajjal/dnsmonster/releases/tag/v${version}";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
mainProgram = "dnsmonster";
|
|
};
|
|
}
|