nixpkgs/pkgs/development/libraries/libnetfilter_queue/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

20 lines
558 B
Nix

{ stdenv, fetchurl, pkgconfig, libmnl, libnfnetlink }:
stdenv.mkDerivation rec {
name = "libnetfilter_queue-1.0.2";
src = fetchurl {
url = "ftp://ftp.netfilter.org/pub/libnetfilter_queue/${name}.tar.bz2";
sha256 = "0chsmj9ky80068vn458ijz9sh4sk5yc08dw2d6b8yddybpmr1143";
};
buildInputs = [ pkgconfig libmnl libnfnetlink ];
meta = {
homepage = "http://www.netfilter.org/projects/libnetfilter_queue/";
description = "Userspace API to packets queued by the kernel packet filter";
platforms = stdenv.lib.platforms.linux;
};
}