2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2006-06-01 14:25:40 -07:00
|
|
|
|
2010-09-27 04:19:36 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-05 09:52:41 -08:00
|
|
|
name = "cabextract-1.9.1";
|
2012-10-05 13:06:19 -07:00
|
|
|
|
2006-06-01 14:25:40 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.cabextract.org.uk/${name}.tar.gz";
|
2019-03-05 09:52:41 -08:00
|
|
|
sha256 = "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg";
|
2010-09-27 04:19:36 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.cabextract.org.uk/";
|
2010-09-27 04:19:36 -07:00
|
|
|
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 ];
|
2006-06-01 14:25:40 -07:00
|
|
|
};
|
|
|
|
}
|