mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
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.
35 lines
995 B
Nix
35 lines
995 B
Nix
{ fetchurl, lib, stdenv, perl, perlPackages, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "namazu";
|
|
version = "2.0.21";
|
|
|
|
src = fetchurl {
|
|
url = "http://namazu.org/stable/${pname}-${version}.tar.gz";
|
|
sha256 = "1xvi7hrprdchdpzhg3fvk4yifaakzgydza5c0m50h1yvg6vay62w";
|
|
};
|
|
|
|
buildInputs = [ perl perlPackages.FileMMagic ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/mknmz --set PERL5LIB ${perlPackages.makeFullPerlPath [ perlPackages.FileMMagic ]}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Full-text search engine";
|
|
|
|
longDescription = ''
|
|
Namazu is a full-text search engine intended for easy use. Not
|
|
only does it work as a small or medium scale Web search engine,
|
|
but also as a personal search system for email or other files.
|
|
'';
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
homepage = "http://namazu.org/";
|
|
|
|
platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
|
|
maintainers = [ ];
|
|
};
|
|
}
|