coreutils?
parent
20e3f6a425
commit
67ab805c92
|
@ -1,2 +1,3 @@
|
||||||
|
export PATH="$coreutils/bin"
|
||||||
mkdir $out
|
mkdir $out
|
||||||
cp *\.{png,webp} $out
|
cp *\.{png,webp} $out
|
||||||
|
|
21
flake.nix
21
flake.nix
|
@ -2,13 +2,26 @@
|
||||||
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{ nixpkgs, ... }: {
|
{ nixpkgs, ... }:
|
||||||
packages."x86_64-linux".default = derivation
|
let
|
||||||
|
systems = [ "aarch64-linux" "x86_64-linux" ];
|
||||||
|
forAllSystems =
|
||||||
|
function:
|
||||||
|
nixpkgs.lib.genAttrs systems (
|
||||||
|
system: function nixpkgs.legacyPackages.${system} system
|
||||||
|
);
|
||||||
|
in
|
||||||
{
|
{
|
||||||
|
packages = forAllSystems (pkgs: system: rec {
|
||||||
|
default = backgrounds;
|
||||||
|
backgrounds = derivation
|
||||||
|
{
|
||||||
|
inherit system;
|
||||||
|
inherit (pkgs) coreutils;
|
||||||
name = "backgrounds";
|
name = "backgrounds";
|
||||||
builder = "${nixpkgs.bash}/bin/bash";
|
builder = "${pkgs.bash}/bin/bash";
|
||||||
args = [ ./builder.sh ];
|
args = [ ./builder.sh ];
|
||||||
system = builtins.currentSystem;
|
|
||||||
};
|
};
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue