blob: 02d4e196704fe80b94596cade1f278bfa201baca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libsmi";
version = "0.5.0";
src = fetchurl {
url = "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/libsmi-${finalAttrs.version}.tar.gz";
sha256 = "1lslaxr2qcj6hf4naq5n5mparfhmswsgq4wa7zm2icqvvgdcq6pj";
};
env.NIX_CFLAGS_COMPILE = "-std=gnu90";
meta = {
description = "Library to Access SMI MIB Information";
homepage = "https://www.ibr.cs.tu-bs.de/projects/libsmi/index.html";
license = lib.licenses.free;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
})
|