mirror of
https://github.com/dwinkler1/fran.git
synced 2026-02-19 22:50:59 -05:00
Compare commits
24 commits
copilot/re
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
7b8fbbcd0c |
|||
|
fcd953634a |
|||
|
28c3c6f7c3 |
|||
|
1c9f2ad305 |
|||
|
6604203916 |
|||
|
7823af6051 |
|||
|
|
0be58feb00 | ||
|
|
f727b93489 | ||
|
68b189ab98 |
|||
|
|
2cd2f13dca | ||
|
c5c7f360c7 |
|||
|
|
cd137a6bf8 | ||
|
48088fc1f3 |
|||
|
|
8201930559 | ||
|
|
1ca4fd632d | ||
|
50f4534589 |
|||
|
aad0222336 |
|||
|
0a17a7c87d |
|||
|
07f6d703c7 |
|||
|
08bd0188f9 |
|||
|
a10f4dee0e |
|||
| c46bc7dea5 | |||
|
|
fe5868d574 | ||
|
a387931751 |
9 changed files with 85 additions and 48 deletions
8
flake.lock
generated
8
flake.lock
generated
|
|
@ -2,16 +2,16 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1762778295,
|
"lastModified": 1771246459,
|
||||||
"narHash": "sha256-5Ogu11rMpc3ytcfBLwO3O1l1MJl0pTT+uCz/OJixmVo=",
|
"narHash": "sha256-r93GMW+p1/jjgaDU9Dadvo2lOcj6a8oza6QayP5ojYk=",
|
||||||
"owner": "rstats-on-nix",
|
"owner": "rstats-on-nix",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "b37b5950aa970ed7abe27144f2ca62e6029215e5",
|
"rev": "b56df64c453105d8e4ebaa0cefd7acd357685fb0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "rstats-on-nix",
|
"owner": "rstats-on-nix",
|
||||||
"ref": "2025-11-10",
|
"ref": "2026-02-16",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
27
flake.nix
27
flake.nix
|
|
@ -2,7 +2,7 @@
|
||||||
description = "FRAN - The Flakey R Archiving Network";
|
description = "FRAN - The Flakey R Archiving Network";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:rstats-on-nix/nixpkgs/2025-11-10";
|
nixpkgs.url = "github:dwinkler1/rixpkgs/nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
|
@ -78,9 +78,34 @@
|
||||||
franUpdate
|
franUpdate
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
newpkg = pkgs.mkShell {
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgs.nix-prefetch-github
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
checks = forAllSystems (
|
||||||
|
system: let
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
overlays = [self.overlays.default];
|
||||||
|
};
|
||||||
|
rEnv = mkR {
|
||||||
|
inherit pkgs;
|
||||||
|
packages = builtins.attrValues pkgs.extraRPackages;
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
test-script = pkgs.runCommand "test-script" {} ''
|
||||||
|
mkdir -p $out
|
||||||
|
cp ${./test/test.R} test.R
|
||||||
|
${rEnv}/bin/Rscript test.R > $out/result.log
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
extra-substituters = [
|
extra-substituters = [
|
||||||
"https://rstats-on-nix.cachix.org"
|
"https://rstats-on-nix.cachix.org"
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
{
|
{
|
||||||
final,
|
final,
|
||||||
prev,
|
prev,
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
# Shared helper function to fetch from GitHub using JSON version files
|
# Shared helper function to fetch from GitHub using JSON version files
|
||||||
fetchfromGitHubJSONFile = path: prev.fetchFromGitHub (builtins.fromJSON (builtins.readFile path));
|
fetchfromGitHubJSONFile = path: prev.fetchFromGitHub (builtins.fromJSON (builtins.readFile path));
|
||||||
|
|
||||||
|
|
@ -15,15 +14,17 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
# Arguments for packages that need access to 'final' (for cross-package dependencies)
|
# Arguments for packages that need access to 'final' (for cross-package dependencies)
|
||||||
argsWithFinal = baseArgs // {
|
argsWithFinal =
|
||||||
inherit final;
|
baseArgs
|
||||||
};
|
// {
|
||||||
|
inherit final;
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
## F
|
## F
|
||||||
fwildclusterboot = import ./f/fwildclusterboot.nix argsWithFinal;
|
fwildclusterboot = import ./f/fwildclusterboot.nix argsWithFinal;
|
||||||
|
|
||||||
## H
|
## J
|
||||||
httpgd = import ./h/httpgd.nix baseArgs;
|
jgd = import ./j/jgd.nix (baseArgs // {lib = prev.lib;});
|
||||||
|
|
||||||
## M
|
## M
|
||||||
musicMetadata = import ./m/musicMetadata.nix baseArgs;
|
musicMetadata = import ./m/musicMetadata.nix baseArgs;
|
||||||
|
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
prev,
|
|
||||||
fetchfromGitHubJSONFile,
|
|
||||||
versionsDir,
|
|
||||||
}:
|
|
||||||
prev.rPackages.buildRPackage {
|
|
||||||
name = "httpgd";
|
|
||||||
src = fetchfromGitHubJSONFile "${versionsDir}/httpgd.json";
|
|
||||||
propagatedBuildInputs = builtins.attrValues {
|
|
||||||
inherit
|
|
||||||
(prev.rPackages)
|
|
||||||
unigd
|
|
||||||
cpp11
|
|
||||||
AsioHeaders
|
|
||||||
;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
25
packages/j/jgd.nix
Normal file
25
packages/j/jgd.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
prev,
|
||||||
|
fetchfromGitHubJSONFile,
|
||||||
|
versionsDir,
|
||||||
|
}: let
|
||||||
|
repoSrc = fetchfromGitHubJSONFile "${versionsDir}/jgd.json";
|
||||||
|
|
||||||
|
rPkgSrc = lib.cleanSourceWith {
|
||||||
|
src = repoSrc;
|
||||||
|
filter = path: type: let
|
||||||
|
p = toString path;
|
||||||
|
in
|
||||||
|
# keep r-pkg/ and everything under it
|
||||||
|
(lib.hasPrefix (toString repoSrc + "/r-pkg") p);
|
||||||
|
};
|
||||||
|
in
|
||||||
|
prev.rPackages.buildRPackage {
|
||||||
|
name = "jgd";
|
||||||
|
src = rPkgSrc;
|
||||||
|
sourceRoot = "source/r-pkg";
|
||||||
|
nativeBuildInputs = [
|
||||||
|
prev.pkg-config
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
cat("Testing\n")
|
cat("Testing\n")
|
||||||
|
cat("\n============================================================ jgd =========================================================================\n")
|
||||||
|
library(jgd)
|
||||||
|
jgd()
|
||||||
|
|
||||||
cat("\n============================================================ fwildclusterboot ============================================================\n")
|
cat("\n============================================================ fwildclusterboot ============================================================\n")
|
||||||
library(fwildclusterboot)
|
library(fwildclusterboot)
|
||||||
data(voters)
|
data(voters)
|
||||||
|
|
@ -30,10 +34,6 @@ summary(boot_lm)
|
||||||
summary(boot_lmjl)
|
summary(boot_lmjl)
|
||||||
summary(boot_lmjl2)
|
summary(boot_lmjl2)
|
||||||
|
|
||||||
cat("\n============================================================ httpgd ============================================================\n")
|
|
||||||
library(httpgd)
|
|
||||||
hgd()
|
|
||||||
|
|
||||||
cat("\n============================================================ musicMetadata ============================================================\n")
|
cat("\n============================================================ musicMetadata ============================================================\n")
|
||||||
library(musicMetadata)
|
library(musicMetadata)
|
||||||
print(classify_labels('Interscope'))
|
print(classify_labels('Interscope'))
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,11 @@
|
||||||
pkgs: ''
|
pkgs: ''
|
||||||
pg=${pkgs.nix-prefetch-github}/bin/nix-prefetch-github
|
pg=${pkgs.nix-prefetch-github}/bin/nix-prefetch-github
|
||||||
|
$pg --json grantmcdermott jgd > versions/jgd.json
|
||||||
$pg --json hannesdatta musicMetadata > versions/musicMetadata.json
|
$pg --json hannesdatta musicMetadata > versions/musicMetadata.json
|
||||||
$pg --json nx10 httpgd > versions/httpgd.json
|
$pg --json nx10 httpgd > versions/httpgd.json
|
||||||
$pg --json s3alfisc fwildclusterboot > versions/fwildclusterboot.json
|
$pg --json s3alfisc fwildclusterboot > versions/fwildclusterboot.json
|
||||||
$pg --json s3alfisc summclust > versions/summclust.json
|
$pg --json s3alfisc summclust > versions/summclust.json
|
||||||
$pg --json synth-inference synthdid > versions/synthdid.json
|
$pg --json synth-inference synthdid > versions/synthdid.json
|
||||||
|
RVER=$( wget -qO- 'https://raw.githubusercontent.com/ropensci/rix/refs/heads/main/inst/extdata/available_df.csv' | tail -n 1 | head -n 1 | cut -d',' -f4 | tr -d '"' )
|
||||||
|
${pkgs.gnused}/bin/sed -i "s|nixpkgs.url = \"github:rstats-on-nix/nixpkgs/[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}\";|nixpkgs.url = \"github:rstats-on-nix/nixpkgs/$RVER\";|" flake.nix
|
||||||
''
|
''
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"owner": "nx10",
|
|
||||||
"repo": "httpgd",
|
|
||||||
"rev": "dd6ed3a687a2d7327bb28ca46725a0a203eb2a19",
|
|
||||||
"hash": "sha256-vs6MTdVJXhTdzPXKqQR+qu1KbhF+vfyzZXIrFsuKMtU="
|
|
||||||
}
|
|
||||||
6
versions/jgd.json
Normal file
6
versions/jgd.json
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"owner": "grantmcdermott",
|
||||||
|
"repo": "jgd",
|
||||||
|
"rev": "e51385ed656618ed3d2611c0ccc1feff22bf4e11",
|
||||||
|
"hash": "sha256-rWn8DVvH7JapCs1i0jQQQsWm00JPNUolVygcfDsSV1k="
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue