Bump nixpkgs
This commit is contained in:
parent
4ffefe1f9e
commit
7d7f628175
8
flake.lock
generated
8
flake.lock
generated
@ -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"
|
||||
}
|
||||
|
10
flake.nix
10
flake.nix
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user