nixpkgs/pkgs/servers/stone/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
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/'
2024-06-09 23:07:45 +02:00

35 lines
724 B
Nix

{ stdenv
, lib
, fetchurl
, openssl
}:
stdenv.mkDerivation rec {
pname = "stone";
version = "2.4";
src = fetchurl {
url = "http://www.gcd.org/sengoku/stone/stone-${version}.tar.gz";
hash = "sha256-1dwa9uxdpQPypAs98/4ZqPv5085pa49G9NU9KsjY628=";
};
buildInputs = [ openssl ];
makeFlags = [ "linux-ssl" ];
installPhase = ''
runHook preInstall
install -Dm755 stone -t $out/bin
runHook postInstall
'';
meta = with lib; {
description = "TCP/IP repeater in the application layer";
homepage = "http://www.gcd.org/sengoku/stone/";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ corngood ];
mainProgram = "stone";
};
}