mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
26 lines
632 B
Nix
26 lines
632 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 = "A gopher daemon for Linux/BSD";
|
|
mainProgram = "geomyidae";
|
|
homepage = "gopher://bitreich.org/1/scm/geomyidae";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.athas ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|