about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/redo/default.nix
blob: e6a68c4215c379214c5a76b5973baeb65a3293f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{lib, stdenv, fetchFromGitHub, perl }:

stdenv.mkDerivation rec {
  pname = "redo";
  version = "1.4";
  src = fetchFromGitHub {
    owner = "jdebp";
    repo = "redo";
    rev = "91f5462339ef6373f9ac80902cfae2b614e2902b";
    hash = "sha256-cA8UN4aQnJ8VyMW3mDOIPna4Ucw1kp8CirZTDhSoCpU=";
  };

  nativeBuildInputs = [ perl /* for pod2man */ ];

  buildPhase = ''
    package/compile
  '';
  installPhase = ''
    package/export $out/
  '';

  meta = {
    homepage = "https://jdebp.eu./Softwares/redo/";
    description = "System for building target files from source files";
    license = lib.licenses.bsd2;
    maintainers = [ ];
    platforms = lib.platforms.unix;
  };
}