about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/archivers/cabextract/default.nix
blob: 3ed07544bb2bef457174102d9e8aa921a8e2953a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "cabextract-1.9.1";

  src = fetchurl {
    url = "https://www.cabextract.org.uk/${name}.tar.gz";
    sha256 = "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg";
  };

  meta = with 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 ];
  };
}