Files
nixpkgs/pkgs/by-name/at/atinout/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
921 B
Nix

{
lib,
stdenv,
fetchgit,
ronn,
mount,
}:
stdenv.mkDerivation {
pname = "atinout";
version = "0.9.2-alpha";
env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.cc.isClang) "-Werror=implicit-fallthrough=0";
LANG = if stdenv.hostPlatform.isDarwin then "en_US.UTF-8" else "C.UTF-8";
nativeBuildInputs = [
ronn
mount
];
src = fetchgit {
url = "git://git.code.sf.net/p/atinout/code";
rev = "4976a6cb5237373b7e23cd02d7cd5517f306e3f6";
sha256 = "0bninv2bklz7ly140cxx8iyaqjlq809jjx6xqpimn34ghwsaxbpv";
};
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
installPhase = ''
make PREFIX=$out install
'';
meta = with lib; {
homepage = "https://atinout.sourceforge.net";
description = "Tool for talking to modems";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ bendlas ];
mainProgram = "atinout";
};
}