Merge pull request #21519 from peterhoeg/f/nim

nim: wrap binary so it can find gcc
This commit is contained in:
Michael Raskin 2016-12-30 09:51:14 +00:00 committed by GitHub
commit b6fbcc1dd3

View file

@ -1,26 +1,32 @@
{ stdenv, fetchurl, unzip }:
{ stdenv, lib, fetchurl, makeWrapper, gcc }:
stdenv.mkDerivation rec {
name = "nim-0.15.2";
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 ];
maintainers = with maintainers; [ ehmry peterhoeg ];
platforms = platforms.linux ++ platforms.darwin; # arbitrary
};
}