summary refs log blame commit diff
path: root/pkgs/development/libraries/libpipeline/default.nix
blob: b5310c3cb8caab95d4495e92805a942ec32e813f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                          
 
                         
                             
 

                                                         
                                                                    

    
                                                                 
 
                    
                                               




                                                                                                          
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "libpipeline-1.5.3";

  src = fetchurl {
    url = "mirror://savannah/libpipeline/${name}.tar.gz";
    sha256 = "1c5dl017xil2ssb6a5vg927bnsbc9vymfgi9ahvqbb8gypx0igsx";
  };

  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;
  };
}