nixpkgs/pkgs/development/libraries/libfann/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

26 lines
592 B
Nix

{ stdenv, lib, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "libfann-${version}";
version = "2.2.0";
src = fetchFromGitHub {
owner = "libfann";
repo = "fann";
rev = version;
sha256 = "0awbs0vjsrdglqiaybb0ln13ciizmyrw9ahllahvgbq4nr0nvf6y";
};
nativeBuildInputs = [ cmake ];
outputs = [ "out" "dev" ];
meta = {
homepage = http://leenissen.dk/fann/wp/;
description = "Fast Artificial Neural Network Library";
maintainers = with lib.maintainers; [ fpletz ];
license = lib.licenses.lgpl21;
platforms = lib.platforms.all;
};
}