nixpkgs/pkgs/development/libraries/libsmi/default.nix
2020-04-10 17:54:53 +01:00

19 lines
552 B
Nix

{ stdenv , fetchurl }:
stdenv.mkDerivation rec {
pname = "libsmi";
version = "0.5.0";
src = fetchurl {
url = "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/${pname}-${version}.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;
};
}