summary refs log tree commit diff
path: root/pkgs/os-specific/linux/squashfs/default.nix
blob: 1f2bde7feac7cc915244cd7586b39a15d46d26a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, zlib}:

stdenv.mkDerivation {
  name = "squashfs-3.1-r2";
  builder = ./builder.sh;
  src = fetchurl {
    url = mirror://sourceforge/squashfs/squashfs3.1-r2.tar.gz;
    md5 = "c252e5286b142afa54ca49829c51a33f";
  };
  buildInputs = [zlib];
}