Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libpipeline / default.nix
blob3630980353a5808f8891e4914171e1fe4d964e90
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "libpipeline";
5   version = "1.5.7";
7   src = fetchurl {
8     url = "mirror://savannah/libpipeline/libpipeline-${version}.tar.gz";
9     sha256 = "sha256-uLRRlJiQIqeewTF/ZKKnWxVRsqVb6gb2dwTLKi5GkLA=";
10   };
12   patches = lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
14   meta = with lib; {
15     homepage = "http://libpipeline.nongnu.org";
16     description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
17     platforms = platforms.unix;
18     license = licenses.gpl3;
19   };