1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

ferm: 2.3 -> 2.3.1

This commit is contained in:
Jörg Thalheim 2017-01-08 17:52:55 +01:00
parent 936bc23b41
commit 188fcc1eb5
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

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