nixpkgs/pkgs/development/libraries/libsmi/default.nix

19 lines
536 B
Nix
Raw Normal View History

{ lib, stdenv , fetchurl }:
2017-05-04 23:13:44 +00:00
stdenv.mkDerivation rec {
pname = "libsmi";
2017-05-04 23:13:44 +00:00
version = "0.5.0";
src = fetchurl {
url = "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/${pname}-${version}.tar.gz";
2017-05-04 23:13:44 +00:00
sha256 = "1lslaxr2qcj6hf4naq5n5mparfhmswsgq4wa7zm2icqvvgdcq6pj";
};
meta = with lib; {
2017-05-04 23:13:44 +00:00
description = "A Library to Access SMI MIB Information";
homepage = "https://www.ibr.cs.tu-bs.de/projects/libsmi/index.html";
2017-05-04 23:13:44 +00:00
license = licenses.free;
2021-01-23 17:15:07 +00:00
platforms = lib.platforms.linux ++ lib.platforms.darwin;
2017-05-04 23:13:44 +00:00
};
}