Merge pull request #120624 from marsam/update-avfs

avfs: 1.1.3 -> 1.1.4

authored by

Mario Rodas and committed by
GitHub
c3a6fc6f d3d3a94e

+3 -3
+3 -3
pkgs/tools/filesystems/avfs/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "avfs"; 5 - version = "1.1.3"; 5 + version = "1.1.4"; 6 6 src = fetchurl { 7 7 url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2"; 8 - sha256 = "1psh8k7g7rb0gn7aygbjv86kxyi9xq07barxksa99nnmq3lc2kjg"; 8 + sha256 = "0ax1zbw4pmggx1b784bfabdqyn39k7109cnl22p69y2phnpq2y9s"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ pkg-config ]; ··· 21 21 homepage = "http://avf.sourceforge.net/"; 22 22 description = "Virtual filesystem that allows browsing of compressed files"; 23 23 platforms = lib.platforms.unix; 24 - license = lib.licenses.gpl2; 24 + license = lib.licenses.gpl2Only; 25 25 }; 26 26 }