Compare commits

..

No commits in common. "d20bcf6a2d957da8f5c0a88b0ca1046aa02dedec" and "dd36dab4978f6844520a6fc1de4228f72a701195" have entirely different histories.

3 changed files with 513 additions and 739 deletions

1029
Cargo.lock generated

File diff suppressed because it is too large Load Diff

23
flake.lock generated
View File

@ -1,12 +1,17 @@
{ {
"nodes": { "nodes": {
"crane": { "crane": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": { "locked": {
"lastModified": 1736101677, "lastModified": 1717469187,
"narHash": "sha256-iKOPq86AOWCohuzxwFy/MtC8PcSVGnrxBOvxpjpzrAY=", "narHash": "sha256-UVvFGiWFGPfVXG7Xr6HPKChx9hhtzkGaGAS/Ph1Khjg=",
"owner": "ipetkov", "owner": "ipetkov",
"repo": "crane", "repo": "crane",
"rev": "61ba163d85e5adeddc7b3a69bb174034965965b2", "rev": "7e86136dc729cdf237aa59a5a02687bc0d1144b6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -20,11 +25,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1731533236, "lastModified": 1710146030,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -35,11 +40,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1736241350, "lastModified": 1716715802,
"narHash": "sha256-CHd7yhaDigUuJyDeX0SADbTM9FXfiWaeNyY34FL1wQU=", "narHash": "sha256-usk0vE7VlxPX8jOavrtpOqphdfqEQpf9lgedlY/r66c=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8c9fd3e564728e90829ee7dbac6edc972971cd0f", "rev": "e2dd4e18cc1c7314e24154331bae07df76eb582f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -3,20 +3,24 @@
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
crane.url = "github:ipetkov/crane";
}; };
outputs = outputs =
{ {
self, self,
nixpkgs, nixpkgs,
flake-utils,
crane, crane,
flake-utils,
... ...
}: }:
let flake-utils.lib.eachDefaultSystem (
packageOutputs = flake-utils.lib.eachDefaultSystem (
system: system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
@ -113,14 +117,10 @@
myCrateCoverage myCrateCoverage
; ;
}; };
hydraJobs = {
"sheet-organizer" = myCrate;
};
} }
); );
in
packageOutputs
// {
hydraJobs = {
x86_64-linux.sheet-organizer = packageOutputs.packages.x86_64-linux;
aarch64-linux.sheet-organizer = packageOutputs.packages.aarch64-linux;
};
};
} }