Nixfiles/pkgs/proton-ge.nix
Quentin Boyer e3e0011cf0 Better packaging of extra packages
Split into different files and use callPackage to build them. Also add
them to a 'package' attribute in the flake, to be able to call them
outside.
2022-11-20 21:09:17 +01:00

14 lines
188 B
Nix

{
stdenv,
proton-ge-src,
}:
stdenv.mkDerivation {
inherit (proton-ge-src) pname src version;
nativeBuildInputs = [];
installPhase = ''
mkdir -p $out
mv * $out/
'';
}