7735d92c2a
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. These checks were done: - built on NixOS - /nix/store/vn68xm8zhynjkr2fwy9kqsl6018gdpxx-redo-1.3/bin/redo passed the binary check. - /nix/store/vn68xm8zhynjkr2fwy9kqsl6018gdpxx-redo-1.3/bin/redo-ifcreate passed the binary check. - /nix/store/vn68xm8zhynjkr2fwy9kqsl6018gdpxx-redo-1.3/bin/redo-ifchange passed the binary check. - /nix/store/vn68xm8zhynjkr2fwy9kqsl6018gdpxx-redo-1.3/bin/cubehash passed the binary check. - 4 of 4 passed binary check by having a zero exit code. - 0 of 4 passed binary check by having the new version present in output. - found 1.3 with grep in /nix/store/vn68xm8zhynjkr2fwy9kqsl6018gdpxx-redo-1.3 - directory tree listing: https://gist.github.com/84977503f6853a878440094f1cbc80bf - du listing: https://gist.github.com/d612673ea44c5055de7d93cbb8e63acc
29 lines
684 B
Nix
29 lines
684 B
Nix
{stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "redo-1.3";
|
|
src = fetchurl {
|
|
url = "https://jdebp.eu./Repository/freebsd/${name}.tar.gz";
|
|
sha256 = "1yx7nd59s01j096hr1zbnbx6mvd6ljzd4vgawh7p2l644jgwj70r";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|