2012-10-05 21:06:19 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2006-06-01 22:25:40 +01:00
|
|
|
|
2010-09-27 12:19:36 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-05 17:52:41 +00:00
|
|
|
name = "cabextract-1.9.1";
|
2012-10-05 21:06:19 +01:00
|
|
|
|
2006-06-01 22:25:40 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.cabextract.org.uk/${name}.tar.gz";
|
2019-03-05 17:52:41 +00:00
|
|
|
sha256 = "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg";
|
2010-09-27 12:19:36 +01:00
|
|
|
};
|
|
|
|
|
2015-05-29 18:50:09 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.cabextract.org.uk/";
|
2010-09-27 12:19:36 +01:00
|
|
|
description = "Free Software for extracting Microsoft cabinet files";
|
2015-05-29 18:50:09 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2006-06-01 22:25:40 +01:00
|
|
|
};
|
|
|
|
}
|