mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
25 lines
745 B
Nix
25 lines
745 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libtelnet-${version}";
|
|
version = "0.21+45f2d5c";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "seanmiddleditch";
|
|
repo = "libtelnet";
|
|
rev = "45f2d5cfcf383312280e61c85b107285fed260cf";
|
|
sha256 = "1lp6gdbndsp2w8mhy88c2jknxj2klvnggvq04ln7qjg8407ifpda";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = {
|
|
description = "Simple RFC-complient TELNET implementation as a C library";
|
|
homepage = https://github.com/seanmiddleditch/libtelnet;
|
|
license = stdenv.lib.licenses.publicDomain;
|
|
maintainers = [ stdenv.lib.maintainers.tomberek ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|