3
0
Fork 0
forked from mirrors/nixpkgs

cabextract: update from 1.4 to 1.6

This commit is contained in:
Pascal Wittmann 2015-05-29 19:50:09 +02:00
parent b59d52daf7
commit 2927efe62e

View file

@ -1,16 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "cabextract-1.4";
name = "cabextract-1.6";
src = fetchurl {
url = "http://www.cabextract.org.uk/${name}.tar.gz";
sha256 = "07p49053a727nwnw7vnx1bpj4xqa43cvx8mads2146fpqai8pfpp";
sha256 = "1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf";
};
meta = {
meta = with stdenv.lib; {
homepage = http://www.cabextract.org.uk/;
description = "Free Software for extracting Microsoft cabinet files";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ pSub ];
};
}