Merge pull request #29672 from andir/upstream-ferm

ferm: 2.3.1 -> 2.4.1
This commit is contained in:
Jörg Thalheim 2017-09-22 23:38:15 +01:00 committed by GitHub
commit 21cadbb8f4

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, perl, ebtables, ipset, iptables }:
stdenv.mkDerivation rec {
version = "2.3.1";
version = "2.4.1";
name = "ferm-${version}";
src = fetchurl {
url = "http://ferm.foo-projects.org/download/2.3/ferm-${version}.tar.gz";
sha256 = "1scdnd2jk4787jyr6fxav2598g0x7hjic5b8bj77j8s0hki48m4a";
url = "http://ferm.foo-projects.org/download/2.4/ferm-${version}.tar.xz";
sha256 = "1fv8wk513yysp4q0i65rl2m0hg2lxwwgk9ppprsca1xcxrdpsvwa";
};
buildInputs = [ perl ipset ebtables iptables makeWrapper ];