mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
slsnif-0.4.4 added
svn path=/nixpkgs/trunk/; revision=12679
This commit is contained in:
parent
d4cf308de6
commit
0686eecf4f
17
pkgs/tools/misc/slsnif/default.nix
Normal file
17
pkgs/tools/misc/slsnif/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "slsnif-0.4.4";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = mirror://sourceforge/slsnif/slsnif-0.4.4.tar.gz;
|
||||
sha256 = "0gn8c5hj8m3sywpwdgn6w5xl4rzsvg0z7d2w8dxi6p152j5b0pii";
|
||||
};
|
||||
|
||||
buildInputs =(with args; []);
|
||||
|
||||
meta = {
|
||||
description = "serial line sniffer";
|
||||
homepage = http://slsnif.sourceforge.net/;
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
|
@ -1073,6 +1073,10 @@ let pkgs = rec {
|
|||
inherit stdenv perl;
|
||||
};
|
||||
|
||||
slsnif = import ../tools/misc/slsnif {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
smartmontools = import ../tools/system/smartmontools {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue