summary refs log tree commit diff
path: root/pkgs/tools/archivers/cabextract/default.nix
blob: e7f9a5a5da07cc1eba643707fac833189ab8fe5b (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "cabextract-1.2";
  src = fetchurl {
    url = http://www.kyz.uklinux.net/downloads/cabextract-1.2.tar.gz;
    md5 = "dc421a690648b503265c82ade84e143e";
  };
}