summary refs log tree commit diff
path: root/pkgs/development/libraries/libsmi/default.nix
blob: 208aa6c9d6161f5d6525607c4e7b48202e252b75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
  };
}