summary refs log tree commit diff
path: root/pkgs/development/libraries/libpipeline/default.nix
blob: f682d394c159e727bbc44cb280c706fb8144425d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "libpipeline";
  version = "1.5.6";

  src = fetchurl {
    url = "mirror://savannah/libpipeline/libpipeline-${version}.tar.gz";
    sha256 = "sha256-YPu559w5hSjl86d2r1e7KMo/5dnwzYqWGsbOv+bpt5c=";
  };

  patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];

  meta = with lib; {
    homepage = "http://libpipeline.nongnu.org";
    description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
    platforms = platforms.unix;
    license = licenses.gpl3;
  };
}