purescript: add meta information for package

Co-Authored-By: justinwoo <moomoowoo@gmail.com>
This commit is contained in:
Graham Christensen 2019-03-20 15:52:28 +02:00 committed by GitHub
parent fb39447028
commit 7af53c85ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,4 +50,11 @@ in stdenv.mkDerivation rec {
mkdir -p $out/etc/bash_completion.d/
$PURS --bash-completion-script $PURS > $out/etc/bash_completion.d/purs-completion.bash
'';
meta = with stdenv.lib; {
description = "A strongly-typed functional programming language that compiles to JavaScript";
homepage = http://www.purescript.org/;
license = licenses.bsd3;
maintainers = [ maintainers.justinwoo ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}