Skip to content

Commit d8fccd4

Browse files
pajowujoachifm
authored andcommittedMay 4, 2017
libsmi: init at 0.5.0 (#25433)
1 parent c49b92f commit d8fccd4

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -2580,6 +2580,8 @@ with pkgs;
25802580

25812581
libcpuid = callPackage ../tools/misc/libcpuid { };
25822582

2583+
libsmi = callPackage ../development/libraries/libsmi { };
2584+
25832585
lesspipe = callPackage ../tools/misc/lesspipe { };
25842586

25852587
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix {

0 commit comments

Comments
 (0)