Compare commits

..

No commits in common. "42d5fff03e9a8aa5ad8a1dac45be209ca12b66d5" and "6ac03f05d1d0a6210f909e9cfda4c5947bcaebc2" have entirely different histories.

4 changed files with 0 additions and 59 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
result/

View file

@ -1,3 +0,0 @@
export PATH="$coreutils/bin"
mkdir $out
cp $src/*\.{png,webp} $out

View file

@ -1,27 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1719254875,
"narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View file

@ -1,28 +0,0 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs =
{ nixpkgs, ... }:
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";
builder = "${pkgs.bash}/bin/bash";
args = [ ./builder.sh ];
src = ./.;
};
});
};
}