nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

cabextract: update from 1.4 to 1.6

+6 -4
+6 -4
pkgs/tools/archivers/cabextract/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "cabextract-1.4"; 4 + name = "cabextract-1.6"; 5 5 6 6 src = fetchurl { 7 7 url = "http://www.cabextract.org.uk/${name}.tar.gz"; 8 - sha256 = "07p49053a727nwnw7vnx1bpj4xqa43cvx8mads2146fpqai8pfpp"; 8 + sha256 = "1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf"; 9 9 }; 10 10 11 - meta = { 11 + meta = with stdenv.lib; { 12 12 homepage = http://www.cabextract.org.uk/; 13 13 description = "Free Software for extracting Microsoft cabinet files"; 14 - platforms = stdenv.lib.platforms.all; 14 + platforms = platforms.all; 15 + license = licenses.gpl3; 16 + maintainers = with maintainers; [ pSub ]; 15 17 }; 16 18 }