1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/development/tools/build-managers/redo/default.nix

29 lines
684 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "redo-1.3";
src = fetchurl {
2016-08-22 21:37:59 +01:00
url = "https://jdebp.eu./Repository/freebsd/${name}.tar.gz";
sha256 = "1yx7nd59s01j096hr1zbnbx6mvd6ljzd4vgawh7p2l644jgwj70r";
};
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/;
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;
};
}