forked from M-Labs/artiq
nix: update package descriptions
This commit is contained in:
parent
81ff3d4b29
commit
2174935231
|
@ -14,4 +14,12 @@ stdenv.mkDerivation rec {
|
||||||
LLVM_CONFIG=${llvm-or1k}/bin/llvm-config
|
LLVM_CONFIG=${llvm-or1k}/bin/llvm-config
|
||||||
python3 setup.py install --prefix=$out
|
python3 setup.py install --prefix=$out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A lightweight LLVM python binding for writing JIT compilers";
|
||||||
|
homepage = "http://llvmlite.pydata.org/";
|
||||||
|
#maintainers = with maintainers; [ sb0 ];
|
||||||
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ rec {
|
||||||
propagatedBuildInputs = with python3Packages; [ pyserial jinja2 numpy asyncserial migen ];
|
propagatedBuildInputs = with python3Packages; [ pyserial jinja2 numpy asyncserial migen ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A high performance and small footprint system-on-chip based on Migen https://m-labs.hk";
|
description = "A high performance and small footprint system-on-chip based on Migen";
|
||||||
homepage = "https://m-labs.hk/migen";
|
homepage = "https://m-labs.hk/migen";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
|
@ -48,6 +48,13 @@ in rec {
|
||||||
cp -r ${or1k-crates}/* $out/lib/rustlib/or1k-unknown-none/lib/
|
cp -r ${or1k-crates}/* $out/lib/rustlib/or1k-unknown-none/lib/
|
||||||
cp -r ${rustc_internal}/* $out
|
cp -r ${rustc_internal}/* $out
|
||||||
'';
|
'';
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://www.rust-lang.org/;
|
||||||
|
description = "A safe, concurrent, practical language";
|
||||||
|
#maintainers = with maintainers; [ sb0 ];
|
||||||
|
license = [ licenses.mit licenses.asl20 ];
|
||||||
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
# nixcloud team code
|
# nixcloud team code
|
||||||
# originally rustc but now renamed to rustc_internal
|
# originally rustc but now renamed to rustc_internal
|
||||||
|
|
Loading…
Reference in New Issue