Init commit

main
Oystein Kristoffer Tveit 2022-11-04 12:43:39 +01:00
commit 119dec9f1b
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 45 additions and 0 deletions

26
flake.lock Normal file
View File

@ -0,0 +1,26 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1667420999,
"narHash": "sha256-NDz83NKuuEuonbhC5HnfhUpZsJQGmAWJr22snKGfhKs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "4f09cfce9c1d54fb56b65125061a632849de1a49",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-22.05",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

19
flake.nix Normal file
View File

@ -0,0 +1,19 @@
{
description = "h7x4s WIP packages that has not been added to nixpkgs (yet?)";
inputs.nixpkgs.url = "nixpkgs/nixos-22.05";
outputs = { self, nixpkgs, ... }: let
# I don't have any other systems to test on yet...
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
inherit (pkgs) lib;
in {
overlays.default = new: old: old // self.packages.${system};
packages.${system} = {};
hydraJobs = {};
};
}