purescript: add meta information for package
Co-Authored-By: justinwoo <moomoowoo@gmail.com>
This commit is contained in:
parent
fb39447028
commit
7af53c85ed
1 changed files with 7 additions and 0 deletions
|
@ -50,4 +50,11 @@ in stdenv.mkDerivation rec {
|
||||||
mkdir -p $out/etc/bash_completion.d/
|
mkdir -p $out/etc/bash_completion.d/
|
||||||
$PURS --bash-completion-script $PURS > $out/etc/bash_completion.d/purs-completion.bash
|
$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" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue