latte-dock: 0.9.11 -> 0.9.12
[NixPkgs.git] / pkgs / tools / networking / arpoison / default.nix
blob6268d958204f6d4b1f62322b55c8e29495f8117b
1 { lib, stdenv, fetchzip, libnet }:
3 stdenv.mkDerivation rec {
4   name = "arpoison-0.7";
6   buildInputs = [ libnet ];
8   src = fetchzip {
9     url = "http://www.arpoison.net/${name}.tar.gz";
10     sha256 = "0krhszx3s0qwfg4rma5a51ak71nnd9xfs2ibggc3hwiz506s2x37";
11   };
13   postPatch = "substituteInPlace Makefile --replace gcc cc";
15   installPhase = ''
16     mkdir -p $out/bin $out/share/man/man8
17     gzip arpoison.8
18     cp arpoison $out/bin
19     cp arpoison.8.gz $out/share/man/man8
20   '';
22   meta = with lib; {
23     description = "UNIX arp cache update utility";
24     homepage = "http://www.arpoison.net/";
25     license = with licenses; [ gpl2 ];
26     maintainers = [ maintainers.michalrus ];
27     platforms = platforms.unix;
28   };