09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
19 lines
490 B
Nix
19 lines
490 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cabextract-1.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.cabextract.org.uk/${name}.tar.gz";
|
|
sha256 = "1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.cabextract.org.uk/;
|
|
description = "Free Software for extracting Microsoft cabinet files";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|