Add unpack utility

This commit is contained in:
Sven Slootweg 2019-08-07 21:03:19 +02:00
parent 98bf68cd8e
commit 38e1081cb0

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
sourceArchive:
pkgs.stdenv.mkDerivation {
name = "unpack-temp";
src = sourceArchive;
buildCommand = ''
mkdir -p $out
tar -xzvf $src -C $out
'';
}