Bumped nixpkgs to 23.11
This commit is contained in:
parent
724a862647
commit
a4a330f638
|
@ -2,16 +2,16 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1685566663,
|
"lastModified": 1701282334,
|
||||||
"narHash": "sha256-btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=",
|
"narHash": "sha256-MxCVrXY6v4QmfTwIysjjaX0XUhqBbxTWWB4HXtDYsdk=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "4ecab3273592f27479a583fb6d975d4aba3486fe",
|
"rev": "057f9aecfb71c4437d2b27d3323df7f93c010b7e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"ref": "23.05",
|
"ref": "23.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
21
flake.nix
21
flake.nix
|
@ -1,14 +1,7 @@
|
||||||
{
|
{
|
||||||
description = "A flake for dump1090 with DL0XK patches.";
|
description = "A flake for dump1090 with DL0XK patches.";
|
||||||
inputs = {
|
inputs = {
|
||||||
# Pointing to the current stable release of nixpkgs. You can
|
nixpkgs.url = "github:NixOS/nixpkgs/23.11";
|
||||||
# customize this to point to an older version or unstable if you
|
|
||||||
# like everything shining.
|
|
||||||
#
|
|
||||||
# E.g.
|
|
||||||
#
|
|
||||||
# nixpkgs.url = "github:NixOS/nixpkgs/unstable";
|
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/23.05";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +12,17 @@
|
||||||
allSystems = [ "x86_64-linux" "aarch64-linux" "armv6l-linux" ];
|
allSystems = [ "x86_64-linux" "aarch64-linux" "armv6l-linux" ];
|
||||||
|
|
||||||
crossPkgs-aarch64-linux = import nixpkgs { localSystem = "x86_64-linux"; crossSystem = "aarch64-linux"; };
|
crossPkgs-aarch64-linux = import nixpkgs { localSystem = "x86_64-linux"; crossSystem = "aarch64-linux"; };
|
||||||
crossPkgs-armv6l-linux = import nixpkgs { localSystem = "x86_64-linux"; crossSystem = "armv6l-linux"; };
|
crossPkgs-armv6l-linux = import nixpkgs {
|
||||||
|
localSystem = "x86_64-linux";
|
||||||
|
crossSystem = {
|
||||||
|
system = "armv6l-linux";
|
||||||
|
gcc = {
|
||||||
|
arch = "armv6k";
|
||||||
|
fpu = "vfp";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
|
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
|
||||||
|
|
Loading…
Reference in a new issue