Bump nixpkgs

This commit is contained in:
Paul Brinkmeier 2025-02-22 19:26:10 +01:00
parent 4ffefe1f9e
commit 7d7f628175
2 changed files with 13 additions and 5 deletions

8
flake.lock generated
View File

@ -2,16 +2,16 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1703693486,
"narHash": "sha256-tuzNTOs+1zR2BEVKKrRRGdpR/n095AXIcT8Me1px2bI=",
"lastModified": 1740243248,
"narHash": "sha256-GJ/fV5AE+4i38/eXmAgBZs4lKYXfScpxPYviUV8ujlk=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "671c2d3e1506a7ee1583515ca80cb3474fdc9c95",
"rev": "a6c4bfe37c51686c042b4bdb4e650a9414e96680",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "release-23.11",
"ref": "release-24.11",
"repo": "nixpkgs",
"type": "github"
}

View File

@ -1,7 +1,7 @@
{
description = "Unicode toy";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-23.11";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-24.11";
outputs = { self, nixpkgs }:
let
@ -9,6 +9,10 @@
utoy = pkgs.haskellPackages.developPackage {
root = ./.;
overrides = self: super: {
unicode-data = super.unicode-data_0_6_0;
unicode-data-names = pkgs.haskell.lib.markUnbroken super.unicode-data-names;
};
};
in {
packages.x86_64-linux = rec {
@ -25,6 +29,10 @@
devShells.x86_64-linux.default =
(pkgs.haskellPackages.developPackage {
root = ./.;
overrides = self: super: {
unicode-data = super.unicode-data_0_6_0;
unicode-data-names = pkgs.haskell.lib.markUnbroken super.unicode-data-names;
};
modifier = drv:
pkgs.haskell.lib.addBuildTools drv [
pkgs.cabal-install