summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/racket
diff options
context:
space:
mode:
authorClaes Wallin (韋嘉誠) <claes.wallin@greatsinodevelopment.com>2018-02-16 12:25:34 +0800
committerClaes Wallin (韋嘉誠) <claes.wallin@greatsinodevelopment.com>2018-02-16 12:32:57 +0800
commita4763e1fd20c906475530cec669d8b37d5c3fec6 (patch)
tree8d2edd93400e44dae3ce94c3cabf64811b56e60e /pkgs/development/interpreters/racket
parente87fb710851063b48731b4b8c4db2ae77270cd54 (diff)
racket-minimal: Add aarch64-linux to meta.platforms
Move description and longDescription to meta -- they were accidentally in the parent set.
Diffstat (limited to 'pkgs/development/interpreters/racket')
-rw-r--r--pkgs/development/interpreters/racket/minimal.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/racket/minimal.nix b/pkgs/development/interpreters/racket/minimal.nix
index 6f9549dc426b..6bac9a0f3414 100644
--- a/pkgs/development/interpreters/racket/minimal.nix
+++ b/pkgs/development/interpreters/racket/minimal.nix
@@ -8,10 +8,12 @@ racket.overrideAttrs (oldAttrs: rec {
sha256 = "0c565jy2y3gjl5lncd5adjsrj8c24p4i062kphv26ni5q1nn5ip5";
};
- description = "Racket without bundled packages, such as Dr. Racket.";
- longDescription = ''The essential package racket-libs is included,
- as well as libraries that live in collections. In particular, raco
- and the pkg library are still bundled.
- '';
-
+ meta = oldAttrs.meta // {
+ description = "Racket without bundled packages, such as Dr. Racket.";
+ longDescription = ''The essential package racket-libs is included,
+ as well as libraries that live in collections. In particular, raco
+ and the pkg library are still bundled.
+ '';
+ platforms = [ "x86_64-linux" "aarch64-linux" ];
+ };
})