2016-05-25 19:43:47 +01:00
|
|
|
{stdenv, fetchurl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-27 23:36:26 +01:00
|
|
|
name = "redo-1.3";
|
2016-05-25 19:43:47 +01:00
|
|
|
src = fetchurl {
|
2016-08-22 21:37:59 +01:00
|
|
|
url = "https://jdebp.eu./Repository/freebsd/${name}.tar.gz";
|
2018-06-27 23:36:26 +01:00
|
|
|
sha256 = "1yx7nd59s01j096hr1zbnbx6mvd6ljzd4vgawh7p2l644jgwj70r";
|
2016-05-25 19:43:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl /* for pod2man */ ];
|
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./package/compile
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
./package/export $out/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-08-22 21:37:59 +01:00
|
|
|
homepage = https://jdebp.eu./Softwares/redo/;
|
2016-05-25 19:43:47 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|