Skip to content

Commit

Permalink
atinout: init 0.9.2-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
bendlas committed Oct 12, 2019
1 parent f3366d2 commit 2c410e2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/tools/networking/atinout/default.nix
@@ -0,0 +1,28 @@
{ stdenv, fetchgit, ronn, mount }:

stdenv.mkDerivation rec {
name = "atinout-${version}";
version = "0.9.2-alpha";

NIX_CFLAGS_COMPILE = [ "-Werror=implicit-fallthrough=0" ];
LANG = "C.UTF-8";
nativeBuildInputs = [ ronn mount ];

src = fetchgit {
url = "git://git.code.sf.net/p/atinout/code";
rev = "4976a6cb5237373b7e23cd02d7cd5517f306e3f6";
sha256 = "0bninv2bklz7ly140cxx8iyaqjlq809jjx6xqpimn34ghwsaxbpv";
};

installPhase = ''
make PREFIX=$out install
'';

meta = with stdenv.lib; {
homepage = http://atinout.sourceforge.net;
description = "Tool for talking to modems";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ bendlas ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -660,6 +660,8 @@ in
gsl = gsl_1;
};

atinout = callPackage ../tools/networking/atinout { };

atomicparsley = callPackage ../tools/video/atomicparsley {
inherit (darwin.apple_sdk.frameworks) Cocoa;
};
Expand Down

0 comments on commit 2c410e2

Please sign in to comment.