summary refs log blame commit diff
path: root/pkgs/os-specific/linux/squashfs/builder.sh
blob: ca514515c450b6e7889130861d69b70c45a373af (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                         
source $stdenv/setup

preBuild() {
  cd squashfs-tools
}

preBuild=preBuild

installPhase() {
  ensureDir $out/sbin
  cp mksquashfs $out/sbin
  cp unsquashfs $out/sbin
}

installPhase=installPhase

genericBuild