df42e8a636
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/redo/versions
29 lines
684 B
Nix
29 lines
684 B
Nix
{stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "redo-1.4";
|
|
src = fetchurl {
|
|
url = "https://jdebp.eu./Repository/freebsd/${name}.tar.gz";
|
|
sha256 = "1c8gr5h77v4fw78zkhbm9z9adqs3kd7xvxwnmci2zvlf4bqqk4jv";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl /* for pod2man */ ];
|
|
|
|
sourceRoot = ".";
|
|
|
|
buildPhase = ''
|
|
./package/compile
|
|
'';
|
|
installPhase = ''
|
|
./package/export $out/
|
|
'';
|
|
|
|
meta = {
|
|
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;
|
|
};
|
|
}
|