tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
racket: fix by update
Vladimír Čunát
13 years ago
07d26cea
b913af9f
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
racket
default.nix
+4
-4
pkgs/development/interpreters/racket/default.nix
···
4
4
5
5
stdenv.mkDerivation rec {
6
6
pname = "racket";
7
7
-
version = "5.2.1";
7
7
+
version = "5.3.3";
8
8
name = "${pname}-${version}";
9
9
10
10
src = fetchurl {
11
11
url = "http://download.racket-lang.org/installers/${version}/${pname}/${name}-src-unix.tgz";
12
12
-
sha256 = "1v5kvp7vfi4a4bn08jlaga441amlfxpjw9dm6vc1fazwzd72m539";
12
12
+
sha256 = "1qp0fmsh4dkxvlj35xnwdcf4m97jcf927cwhnckjicqx1lfa0wj7";
13
13
};
14
14
15
15
# Various racket executables do run-time searches for these.
···
44
44
'';
45
45
46
46
meta = {
47
47
-
description = "Racket (formerly called PLT Scheme) is a programming language derived from Scheme.";
47
47
+
description = "A programming language derived from Scheme (formerly called PLT Scheme).";
48
48
longDescription = ''
49
49
Racket (formerly called PLT Scheme) is a programming language derived
50
50
from Scheme. The Racket project has four primary components: the
···
56
56
'';
57
57
58
58
homepage = http://racket-lang.org/;
59
59
-
license = stdenv.lib.licenses.lgpl2Plus;
59
59
+
license = stdenv.lib.licenses.lgpl2Plus; # and licenses of contained libraries
60
60
maintainers = [ stdenv.lib.maintainers.kkallio ];
61
61
platforms = stdenv.lib.platforms.linux;
62
62
};