1
Fork 0

build on linux

This commit is contained in:
Jan-Erik Rediger 2024-06-02 00:40:02 +02:00
parent e894a59afb
commit 2a08a59e8c
2 changed files with 17 additions and 9 deletions

View file

@ -35,24 +35,32 @@
"linux-hare-src": {
"flake": false,
"locked": {
"narHash": "sha256-RzG6JXSWtwIvFz6V1Qr9Yfwc2Yw5LDVt0/h1cfISU0Y=",
"type": "file",
"lastModified": 1717244404,
"narHash": "sha256-iEGez/JfWvAaHbYUQL/BeRPUH5d+xj7AyFM8CvA+oDU=",
"ref": "refs/heads/master",
"rev": "a3fd5ec812ee31a7ec4a07053518b64aaa0c3932",
"revCount": 3883,
"type": "git",
"url": "https://git.sr.ht/~sircmpwn/hare"
},
"original": {
"type": "file",
"type": "git",
"url": "https://git.sr.ht/~sircmpwn/hare"
}
},
"linux-harec-src": {
"flake": false,
"locked": {
"narHash": "sha256-Ipbnl76ks5lw8tsQOfpdUP+iVvZ+E336R3FEYxzghdU=",
"type": "file",
"lastModified": 1716809026,
"narHash": "sha256-z4D4MMVROoMFnqAjyWWCUdHwCfR14coGFUNdRGQktgQ=",
"ref": "refs/heads/master",
"rev": "42f9b39977ce8d94bab1655f07bb82eb08c85dda",
"revCount": 1914,
"type": "git",
"url": "https://git.sr.ht/~sircmpwn/harec"
},
"original": {
"type": "file",
"type": "git",
"url": "https://git.sr.ht/~sircmpwn/harec"
}
},

View file

@ -12,12 +12,12 @@
};
linux-harec-src = {
url = "https://git.sr.ht/~sircmpwn/harec";
url = "git+https://git.sr.ht/~sircmpwn/harec";
flake = false;
};
linux-hare-src = {
url = "https://git.sr.ht/~sircmpwn/hare";
url = "git+https://git.sr.ht/~sircmpwn/hare";
flake = false;
};
};
@ -48,7 +48,7 @@
nixpkgs.lib.genAttrs linuxSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
harec = pkgs.callPackage ./pkgs/linux/harec.nix { harec-src = linux-hare-src; };
harec = pkgs.callPackage ./pkgs/linux/harec.nix { harec-src = linux-harec-src; };
hare = pkgs.callPackage ./pkgs/linux/hare.nix { inherit harec; hare-src = linux-hare-src; };
in
{