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

19 lines
493 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
2019-03-05 09:52:41 -08:00
name = "cabextract-1.9.1";
2012-10-05 13:06:19 -07:00
src = fetchurl {
url = "https://www.cabextract.org.uk/${name}.tar.gz";
2019-03-05 09:52:41 -08:00
sha256 = "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg";
};
meta = with lib; {
homepage = "https://www.cabextract.org.uk/";
description = "Free Software for extracting Microsoft cabinet files";
2015-05-29 10:50:09 -07:00
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ pSub ];
};
}