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

19 lines
552 B
Nix
Raw Normal View History

2017-05-04 23:13:44 +00:00
{ stdenv , fetchurl }:
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 stdenv.lib; {
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;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}