mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
redo: Init at 1.2
Redo is an alternative for Make. This package is a C++ implementation of redo.
This commit is contained in:
parent
331fa2feff
commit
df40533f11
2 changed files with 30 additions and 0 deletions
28
pkgs/development/tools/build-managers/redo/default.nix
Normal file
28
pkgs/development/tools/build-managers/redo/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "redo-1.2";
|
||||
src = fetchurl {
|
||||
url = "http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/${name}.tar.bz2";
|
||||
sha256 = "0hfbiljmgl821a0sf7abrfx29f22ahrgs86mrlrm8m95s7387kpp";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perl /* for pod2man */ ];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
buildPhase = ''
|
||||
./package/compile
|
||||
'';
|
||||
installPhase = ''
|
||||
./package/export $out/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/redo.html;
|
||||
description = "A system for building target files from source files";
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
maintainers = [ stdenv.lib.maintainers.vrthra ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -6373,6 +6373,8 @@ in
|
|||
ruby = ruby_2_0;
|
||||
};
|
||||
|
||||
redo = callPackage ../development/tools/build-managers/redo { };
|
||||
|
||||
re2c = callPackage ../development/tools/parsing/re2c { };
|
||||
|
||||
remake = callPackage ../development/tools/build-managers/remake { };
|
||||
|
|
Loading…
Reference in a new issue