Add some missing platforms

This commit is contained in:
William A. Kennington III 2015-04-20 14:44:53 -07:00
parent c6d0acbda7
commit 71e40eeb4b
3 changed files with 5 additions and 4 deletions

View File

@ -46,10 +46,11 @@ stdenv.mkDerivation rec {
doCheck = true;
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
meta = {
meta = with stdenv.lib; {
description = "Crypto++, a free C++ class library of cryptographic schemes";
homepage = http://cryptopp.com/;
license = stdenv.lib.licenses.boost;
license = licenses.boost;
platforms = platforms.all;
maintainers = [ ];
};
}

View File

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://www.openfabrics.org/;
license = licenses.bsd2;
platforms = platforms.linux;
platforms = with platforms; linux ++ freebsd;
maintainers = with maintainers; [ wkennington ];
};
}

View File

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://www.openfabrics.org/;
platforms = platforms.linux;
platforms = with platforms; linux ++ freebsd;
license = licenses.bsd2;
maintainers = with maintainers; [ wkennington ];
};