File tree 2 files changed +20
-0
lines changed
development/libraries/libsmi
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ { stdenv , fetchurl } :
2
+
3
+ stdenv . mkDerivation rec {
4
+ name = "libsmi-${ version } " ;
5
+ version = "0.5.0" ;
6
+
7
+ src = fetchurl {
8
+ url = "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/${ name } .tar.gz" ;
9
+ sha256 = "1lslaxr2qcj6hf4naq5n5mparfhmswsgq4wa7zm2icqvvgdcq6pj" ;
10
+ } ;
11
+
12
+ meta = with stdenv . lib ; {
13
+ description = "A Library to Access SMI MIB Information" ;
14
+ homepage = "https://www.ibr.cs.tu-bs.de/projects/libsmi/index.html" ;
15
+ license = licenses . free ;
16
+ platforms = stdenv . lib . platforms . linux ++ stdenv . lib . platforms . darwin ;
17
+ } ;
18
+ }
Original file line number Diff line number Diff line change @@ -2580,6 +2580,8 @@ with pkgs;
2580
2580
2581
2581
libcpuid = callPackage ../tools/misc/libcpuid { };
2582
2582
2583
+ libsmi = callPackage ../development/libraries/libsmi { };
2584
+
2583
2585
lesspipe = callPackage ../tools/misc/lesspipe { };
2584
2586
2585
2587
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix {
You can’t perform that action at this time.
0 commit comments