diff --git a/packages/simplesamlphptheme/default.nix b/packages/simplesamlphptheme/default.nix index ecb5966..1e2dad3 100644 --- a/packages/simplesamlphptheme/default.nix +++ b/packages/simplesamlphptheme/default.nix @@ -21,7 +21,9 @@ stdenv.mkDerivation { }; installPhase = '' - cp -r * $out/ - ''; + mkdir -p $out/bin + cp -r ssp-theme $out/bin/ + chmod -R +x $out/bin/ + ''; }