Merge branch 'master' into staging
This commit is contained in:
@@ -5,7 +5,7 @@ with rustPlatform;
|
||||
|
||||
with ((import ./common.nix) {
|
||||
inherit stdenv rustc;
|
||||
version = "0.7.0";
|
||||
version = "0.8.0";
|
||||
});
|
||||
|
||||
buildRustPackage rec {
|
||||
@@ -15,10 +15,10 @@ buildRustPackage rec {
|
||||
src = fetchgit {
|
||||
url = "git://github.com/rust-lang/cargo";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "139rv7d6mk31klbnccmn573i05ygjrnflag6c3qwc075i62yfmx6";
|
||||
sha256 = "02z0b6hpygjjfbskg22ggrhdv2nasrgf8x1fd8y0qzg4krx2czlh";
|
||||
};
|
||||
|
||||
depsSha256 = "07p244bcw3aa1hfbsz6q89pyl8ypkw9zp1r8cvd131w890w9ab4b";
|
||||
depsSha256 = "1gwc5ygs3h8jxs506xmbj1xzaqpb3kmg3pkxg9j9yqy616jw6rcn";
|
||||
|
||||
buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ];
|
||||
|
||||
|
||||
@@ -0,0 +1,69 @@
|
||||
{ fetchurl, stdenv, fetchFromGitHub, pkgconfig, mono, makeWrapper
|
||||
, targetVersion ? "4.5" }:
|
||||
|
||||
let
|
||||
version = "2015-11-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nant";
|
||||
repo = "nant";
|
||||
rev = "19bec6eca205af145e3c176669bbd57e1712be2a";
|
||||
sha256 = "11l5y76csn686p8i3kww9s0sxy659ny9l64krlqg3y2nxaz0fk6l";
|
||||
};
|
||||
|
||||
nant-bootstrapped = stdenv.mkDerivation {
|
||||
name = "nant-bootstrapped-${version}";
|
||||
inherit src;
|
||||
|
||||
buildInputs = [ pkgconfig mono makeWrapper ];
|
||||
|
||||
buildFlags = "bootstrap";
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/nant-bootstrap
|
||||
cp -r bootstrap/* $out/lib/nant-bootstrap
|
||||
|
||||
mkdir -p $out/bin
|
||||
makeWrapper "${mono}/bin/mono" $out/bin/nant \
|
||||
--add-flags "$out/lib/nant-bootstrap/NAnt.exe"
|
||||
'';
|
||||
};
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "nant-${version}";
|
||||
inherit src;
|
||||
|
||||
buildInputs = [ pkgconfig mono makeWrapper nant-bootstrapped ];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
buildPhase = ''
|
||||
nant -t:mono-${targetVersion}
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/nant
|
||||
cp -r build/mono-${targetVersion}.unix/nant-debug/bin/* $out/lib/nant/
|
||||
|
||||
mkdir -p $out/bin
|
||||
makeWrapper "${mono}/bin/mono" $out/bin/nant \
|
||||
--add-flags "$out/lib/nant/NAnt.exe"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://nant.sourceforge.net;
|
||||
description = "NAnt is a free .NET build tool";
|
||||
|
||||
longDescription = ''
|
||||
NAnt is a free .NET build tool. In theory it is kind of like make without
|
||||
make's wrinkles. In practice it's a lot like Ant.
|
||||
'';
|
||||
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ zohl ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user