Compare commits

..

No commits in common. "c73d546857270e0e039939df4b09914a3a6d5ae1" and "065ff0f0ee9e44234678f0fefbba7961ea42518c" have entirely different histories.

3 changed files with 0 additions and 56 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
result

40
flake.lock generated
View file

@ -1,40 +0,0 @@
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1623875721,
"narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "f7e004a55b120c02ecb6219596820fcd32ca8772",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1627128856,
"narHash": "sha256-yw3lA8zyNFhj309lmxvNByEEymRT1rRy5oE+jEPnsP4=",
"path": "/nix/store/3iw3gnv08yaz0v5qjhmv6g4dlj7pirfz-source",
"rev": "dd14e5d78e90a2ccd6007e569820de9b4861a6c2",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View file

@ -1,15 +0,0 @@
{
description = "Assorted scripts";
inputs = {
flake-utils.url = github:numtide/flake-utils;
};
outputs = { self, flake-utils, nixpkgs, ... }: (flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
defaultPackage = self.packages.${system}.scripts;
packages.scripts = pkgs.callPackage ./default.nix { };
}
));
}