nixpkgs/pkgs/development/libraries/libtelnet/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* 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
2017-08-01 22:03:30 +02:00

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;
};
}