mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
33 lines
884 B
Nix
33 lines
884 B
Nix
{ stdenv, lib, fetchurl, makeWrapper, gcc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nim-${version}";
|
|
version = "0.15.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://nim-lang.org/download/${name}.tar.xz";
|
|
sha256 = "12pyzjx7x4hclzrf3zf6r1qjlp60bzsaqrz0rax2rak2c8qz4pch";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildPhase = "sh build.sh";
|
|
|
|
installPhase =
|
|
''
|
|
install -Dt "$out/bin" bin/nim
|
|
substituteInPlace install.sh --replace '$1/nim' "$out"
|
|
sh install.sh $out
|
|
wrapProgram $out/bin/nim \
|
|
--suffix PATH : ${lib.makeBinPath [ gcc ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib;
|
|
{ description = "Statically typed, imperative programming language";
|
|
homepage = http://nim-lang.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ehmry peterhoeg ];
|
|
platforms = platforms.linux ++ platforms.darwin; # arbitrary
|
|
};
|
|
}
|