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

stdenv.mkDerivation {
  name = "cabextract-1.2";
  src = fetchurl {
    url = http://www.cabextract.org.uk/cabextract-1.2.tar.gz;
    sha256 = "1sr5f7qicj5q2h5m4wbmfcaaqxg5zkl5vkxlhyc11spwfh58d75f";
  };
}