Add some missing platforms
This commit is contained in:
parent
c6d0acbda7
commit
71e40eeb4b
@ -46,10 +46,11 @@ stdenv.mkDerivation rec {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
|
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Crypto++, a free C++ class library of cryptographic schemes";
|
description = "Crypto++, a free C++ class library of cryptographic schemes";
|
||||||
homepage = http://cryptopp.com/;
|
homepage = http://cryptopp.com/;
|
||||||
license = stdenv.lib.licenses.boost;
|
license = licenses.boost;
|
||||||
|
platforms = platforms.all;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.openfabrics.org/;
|
homepage = https://www.openfabrics.org/;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.linux;
|
platforms = with platforms; linux ++ freebsd;
|
||||||
maintainers = with maintainers; [ wkennington ];
|
maintainers = with maintainers; [ wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.openfabrics.org/;
|
homepage = https://www.openfabrics.org/;
|
||||||
platforms = platforms.linux;
|
platforms = with platforms; linux ++ freebsd;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ wkennington ];
|
maintainers = with maintainers; [ wkennington ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user