mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01: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
19 lines
548 B
Nix
19 lines
548 B
Nix
{ stdenv , fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libsmi-${version}";
|
|
version = "0.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/${name}.tar.gz";
|
|
sha256 = "1lslaxr2qcj6hf4naq5n5mparfhmswsgq4wa7zm2icqvvgdcq6pj";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Library to Access SMI MIB Information";
|
|
homepage = https://www.ibr.cs.tu-bs.de/projects/libsmi/index.html;
|
|
license = licenses.free;
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|