libsmi: init at 0.5.0 (#25433)
This commit is contained in:
parent
c49b92fe14
commit
d8fccd4ac5
18
pkgs/development/libraries/libsmi/default.nix
Normal file
18
pkgs/development/libraries/libsmi/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -2580,6 +2580,8 @@ with pkgs;
|
||||
|
||||
libcpuid = callPackage ../tools/misc/libcpuid { };
|
||||
|
||||
libsmi = callPackage ../development/libraries/libsmi { };
|
||||
|
||||
lesspipe = callPackage ../tools/misc/lesspipe { };
|
||||
|
||||
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix {
|
||||
|
Loading…
x
Reference in New Issue
Block a user