Compare commits
1 Commits
feature/se
...
main
Author | SHA1 | Date | |
---|---|---|---|
7d7f628175 |
8
flake.lock
generated
8
flake.lock
generated
@ -2,16 +2,16 @@
|
|||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1703693486,
|
"lastModified": 1740243248,
|
||||||
"narHash": "sha256-tuzNTOs+1zR2BEVKKrRRGdpR/n095AXIcT8Me1px2bI=",
|
"narHash": "sha256-GJ/fV5AE+4i38/eXmAgBZs4lKYXfScpxPYviUV8ujlk=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "671c2d3e1506a7ee1583515ca80cb3474fdc9c95",
|
"rev": "a6c4bfe37c51686c042b4bdb4e650a9414e96680",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"ref": "release-23.11",
|
"ref": "release-24.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
10
flake.nix
10
flake.nix
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
description = "Unicode toy";
|
description = "Unicode toy";
|
||||||
|
|
||||||
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-23.11";
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-24.11";
|
||||||
|
|
||||||
outputs = { self, nixpkgs }:
|
outputs = { self, nixpkgs }:
|
||||||
let
|
let
|
||||||
@ -9,6 +9,10 @@
|
|||||||
|
|
||||||
utoy = pkgs.haskellPackages.developPackage {
|
utoy = pkgs.haskellPackages.developPackage {
|
||||||
root = ./.;
|
root = ./.;
|
||||||
|
overrides = self: super: {
|
||||||
|
unicode-data = super.unicode-data_0_6_0;
|
||||||
|
unicode-data-names = pkgs.haskell.lib.markUnbroken super.unicode-data-names;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
packages.x86_64-linux = rec {
|
packages.x86_64-linux = rec {
|
||||||
@ -25,6 +29,10 @@
|
|||||||
devShells.x86_64-linux.default =
|
devShells.x86_64-linux.default =
|
||||||
(pkgs.haskellPackages.developPackage {
|
(pkgs.haskellPackages.developPackage {
|
||||||
root = ./.;
|
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:
|
modifier = drv:
|
||||||
pkgs.haskell.lib.addBuildTools drv [
|
pkgs.haskell.lib.addBuildTools drv [
|
||||||
pkgs.cabal-install
|
pkgs.cabal-install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user