summary refs log tree commit diff
path: root/pkgs/development/libraries/libsmi
diff options
context:
space:
mode:
authorpajowu <pajowu@users.noreply.github.com>2017-05-05 02:13:44 +0300
committerJoachim F <joachifm@users.noreply.github.com>2017-05-05 00:13:44 +0100
commitd8fccd4ac571ac20069076380f89082205c0764e (patch)
tree1e32fed1cc501562839755fce7490120306db045 /pkgs/development/libraries/libsmi
parentc49b92fe145a60eec04e6f42aa65132975663e5a (diff)
downloadnixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.tar
nixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.tar.gz
nixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.tar.bz2
nixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.tar.lz
nixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.tar.xz
nixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.tar.zst
nixpkgs-d8fccd4ac571ac20069076380f89082205c0764e.zip
libsmi: init at 0.5.0 (#25433)
Diffstat (limited to 'pkgs/development/libraries/libsmi')
-rw-r--r--pkgs/development/libraries/libsmi/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libsmi/default.nix b/pkgs/development/libraries/libsmi/default.nix
new file mode 100644
index 00000000000..21b788efb89
--- /dev/null
+++ b/pkgs/development/libraries/libsmi/default.nix
@@ -0,0 +1,18 @@
+{ stdenv , fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "libsmi-${version}";
+  version = "0.5.0";
+
+  src = fetchurl {
+    url = "https://www.ibr.cs.tu-bs.de/projects/libsmi/download/${name}.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;
+  };
+}