mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
630 B
Nix
26 lines
630 B
Nix
{ lib, stdenv, fetchurl, libressl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geomyidae";
|
|
version = "0.69";
|
|
|
|
src = fetchurl {
|
|
url = "gopher://bitreich.org/9/scm/geomyidae/tag/geomyidae-v${version}.tar.gz";
|
|
hash = "sha256-C0mAjyS2wZVipXP/sKxa/d7gDyYQ/MvmwqQ/QMzmcRE=";
|
|
};
|
|
|
|
buildInputs = [ libressl ];
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = with lib; {
|
|
description = "Gopher daemon for Linux/BSD";
|
|
mainProgram = "geomyidae";
|
|
homepage = "gopher://bitreich.org/1/scm/geomyidae";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.athas ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|