mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-16 20:23:04 +01:00
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.
14 lines
188 B
Nix
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/
|
|
'';
|
|
}
|