mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
e5a21b7bed
[Bjørn Forsman: modify meta.description so that it doesn't include the package name and doesn't end in a period.]
18 lines
486 B
Nix
18 lines
486 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpipeline-1.2.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/libpipeline/${name}.tar.gz";
|
|
sha256 = "0wjsigim422ilzs46hxzv98l10zprpbk53gq3jzj6s9kn9n1wljc";
|
|
};
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|