nixpkgs/pkgs/development/gnuradio-modules/nacl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
822 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, pkg-config
, cppunit
, swig
, boost
, logLib
, python
, libsodium
2015-11-04 14:42:01 +00:00
}:
mkDerivation {
pname = "gr-nacl";
version = "2017-04-10";
2015-11-04 14:42:01 +00:00
src = fetchFromGitHub {
owner = "stwunsch";
repo = "gr-nacl";
rev = "15276bb0fcabf5fe4de4e58df3d579b5be0e9765";
sha256 = "018np0qlk61l7mlv3xxx5cj1rax8f1vqrsrch3higsl25yydbv7v";
2015-11-04 14:42:01 +00:00
};
disabledForGRafter = "3.8";
2015-11-04 14:42:01 +00:00
nativeBuildInputs = [
cmake
pkg-config
swig
python
];
2015-11-04 14:42:01 +00:00
buildInputs = [
cppunit
logLib
boost
libsodium
];
2015-11-04 14:42:01 +00:00
meta = with lib; {
2015-11-04 14:42:01 +00:00
description = "Gnuradio block for encryption";
homepage = "https://github.com/stwunsch/gr-nacl";
2015-11-04 14:42:01 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux ++ platforms.darwin;
2015-11-04 14:42:01 +00:00
maintainers = with maintainers; [ mog ];
};
}