nixpkgs/pkgs/tools/archivers/cabextract/default.nix

19 lines
490 B
Nix
Raw Normal View History

2012-10-05 20:06:19 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-05-29 17:50:09 +00:00
name = "cabextract-1.6";
2012-10-05 20:06:19 +00:00
src = fetchurl {
2012-10-05 20:06:19 +00:00
url = "http://www.cabextract.org.uk/${name}.tar.gz";
2015-05-29 17:50:09 +00:00
sha256 = "1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf";
};
2015-05-29 17:50:09 +00:00
meta = with stdenv.lib; {
homepage = https://www.cabextract.org.uk/;
description = "Free Software for extracting Microsoft cabinet files";
2015-05-29 17:50:09 +00:00
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ pSub ];
};
}