File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,9 @@ transformFst :: (Char -> Char) -> String -> String
166
166
transformFst _ [] = []
167
167
transformFst f (x: xs) = f x : xs
168
168
capitalize :: String -> String
169
- capitalize = transformFst toUpper
169
+ capitalize " javascript" = " JavaScript"
170
+ capitalize " Javascript" = " JavaScript"
171
+ capitalize x = transformFst toUpper x
170
172
171
173
--- Turn something into a NExpr
172
174
Original file line number Diff line number Diff line change 34
34
let
35
35
tarball = final . fetchzip {
36
36
name = "nix-tools-0.1.0.0" ;
37
- url = "https://ci.zw3rk.com/build/2919091 /download/1/nix-tools-0.1.0.0-x86_64-unknown-linux-musl.tar.gz" ;
38
- sha256 = "sha256-xSTzKGpRqu0vJcY0IyTJjikCdWkXi5GcfdEh9DU9WXY =" ;
37
+ url = "https://ci.zw3rk.com/build/3108674 /download/1/nix-tools-0.1.0.0-x86_64-unknown-linux-musl.tar.gz" ;
38
+ sha256 = "sha256-KJ3BcmJqPjlN24+mIRPbmwRLS8eoMmGWz8AOh6H45bo =" ;
39
39
} ;
40
40
nix-tools-provided-exes = builtins . attrNames nix-tools-pkgs . nix-tools . exes ;
41
41
in
You can’t perform that action at this time.
0 commit comments