Skip to content

Instantly share code, notes, and snippets.

@htr
Created May 6, 2021 22:43
Show Gist options
  • Save htr/652d507b8a2875060e85436266ea1ec2 to your computer and use it in GitHub Desktop.
Save htr/652d507b8a2875060e85436266ea1ec2 to your computer and use it in GitHub Desktop.
{ lib, pkgs, stdenv }:
let
current-nixfiles = stdenv.mkDerivation rec {
name = "unpack-nixfiles";
src = ../.;
installPhase = ''
mkdir -p $out/share/nixfiles
cd $src
tar --transform 's,^,nixfiles/,' -czf $out/share/nixfiles/nixfiles.tar.gz .
'';
};
in pkgs.writeShellScriptBin "unpack-nixfiles" ''
tar zxf ${current-nixfiles}/share/nixfiles/nixfiles.tar.gz
''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment