nixpkgs/pkgs/development/libraries/libipfix/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

18 lines
600 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libipfix";
version = "110209";
src = fetchurl {
url = "mirror://sourceforge/libipfix/files/libipfix/libipfix_110209.tgz";
sha256 = "0h7v0sxjjdc41hl5vq2x0yhyn04bczl11bqm97825mivrvfymhn6";
};
meta = with stdenv.lib; {
homepage = http://libipfix.sourceforge.net/;
description = "The libipfix C-library implements the IPFIX protocol defined by the IP Flow Information Export working group of the IETF.";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ lewo ];
};
}