From 217493523199aea8649c7f91a63b0bbe3173d645 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 22 Jan 2019 15:06:13 +0800 Subject: [PATCH] nix: update package descriptions --- nix/pkgs/llvmlite.nix | 8 ++++++++ nix/pkgs/python3Packages.nix | 2 +- nix/pkgs/rust/default.nix | 7 +++++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/nix/pkgs/llvmlite.nix b/nix/pkgs/llvmlite.nix index 7905dbae8..9c7ef6e4b 100644 --- a/nix/pkgs/llvmlite.nix +++ b/nix/pkgs/llvmlite.nix @@ -14,4 +14,12 @@ stdenv.mkDerivation rec { LLVM_CONFIG=${llvm-or1k}/bin/llvm-config 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; + }; } diff --git a/nix/pkgs/python3Packages.nix b/nix/pkgs/python3Packages.nix index f4b16a396..538df4d5e 100644 --- a/nix/pkgs/python3Packages.nix +++ b/nix/pkgs/python3Packages.nix @@ -38,7 +38,7 @@ rec { propagatedBuildInputs = with python3Packages; [ pyserial jinja2 numpy asyncserial migen ]; 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"; license = licenses.bsd2; platforms = platforms.unix; diff --git a/nix/pkgs/rust/default.nix b/nix/pkgs/rust/default.nix index 1a392124e..fa8f93856 100644 --- a/nix/pkgs/rust/default.nix +++ b/nix/pkgs/rust/default.nix @@ -48,6 +48,13 @@ in rec { cp -r ${or1k-crates}/* $out/lib/rustlib/or1k-unknown-none/lib/ 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 # originally rustc but now renamed to rustc_internal