mirror of
https://github.com/dwinkler1/fran.git
synced 2026-02-19 22:50:59 -05:00
Compare commits
No commits in common. "825860d333851c2672181d93838dd0babf20f662" and "0be58feb00431b2a7853a74198ecd1b956aa3b3e" have entirely different histories.
825860d333
...
0be58feb00
6 changed files with 35 additions and 11 deletions
16
flake.lock
generated
16
flake.lock
generated
|
|
@ -2,17 +2,17 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1771303851,
|
"lastModified": 1771246459,
|
||||||
"narHash": "sha256-tgveHozOJ2D/mi3LxVy/FcmLFDlM5XKZxsNB2XpvzaM=",
|
"narHash": "sha256-r93GMW+p1/jjgaDU9Dadvo2lOcj6a8oza6QayP5ojYk=",
|
||||||
"owner": "dwinkler1",
|
"owner": "rstats-on-nix",
|
||||||
"repo": "rixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "af2dd3f7b4b172077747c0869d4e30702fb71b0e",
|
"rev": "b56df64c453105d8e4ebaa0cefd7acd357685fb0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "dwinkler1",
|
"owner": "rstats-on-nix",
|
||||||
"ref": "nixpkgs",
|
"ref": "2026-02-16",
|
||||||
"repo": "rixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
description = "FRAN - The Flakey R Archiving Network";
|
description = "FRAN - The Flakey R Archiving Network";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:dwinkler1/rixpkgs/nixpkgs";
|
nixpkgs.url = "github:rstats-on-nix/nixpkgs/2026-02-16";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,9 @@ in {
|
||||||
## F
|
## F
|
||||||
fwildclusterboot = import ./f/fwildclusterboot.nix argsWithFinal;
|
fwildclusterboot = import ./f/fwildclusterboot.nix argsWithFinal;
|
||||||
|
|
||||||
|
## H
|
||||||
|
httpgd = import ./h/httpgd.nix baseArgs;
|
||||||
|
|
||||||
## J
|
## J
|
||||||
jgd = import ./j/jgd.nix (baseArgs // {lib = prev.lib;});
|
jgd = import ./j/jgd.nix (baseArgs // {lib = prev.lib;});
|
||||||
|
|
||||||
|
|
|
||||||
17
packages/h/httpgd.nix
Normal file
17
packages/h/httpgd.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
prev,
|
||||||
|
fetchfromGitHubJSONFile,
|
||||||
|
versionsDir,
|
||||||
|
}:
|
||||||
|
prev.rPackages.buildRPackage {
|
||||||
|
name = "httpgd";
|
||||||
|
src = fetchfromGitHubJSONFile "${versionsDir}/httpgd.json";
|
||||||
|
propagatedBuildInputs = builtins.attrValues {
|
||||||
|
inherit
|
||||||
|
(prev.rPackages)
|
||||||
|
unigd
|
||||||
|
cpp11
|
||||||
|
AsioHeaders
|
||||||
|
;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -34,6 +34,10 @@ 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,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"owner": "nx10",
|
"owner": "nx10",
|
||||||
"repo": "httpgd",
|
"repo": "httpgd",
|
||||||
"rev": "44ed9b5f2d3abce9095122361d31d630a550022a",
|
"rev": "41a0372b35d18c9f40694be2a0a1ea6c64bab06f",
|
||||||
"hash": "sha256-GBxhxoF329IbFcGGfsUUGm3Y+DvM0PVWvJzc3eJgaNU="
|
"hash": "sha256-IYkIO28WDfNtUUJqK8vwo8Qd34W5OAD+7AUSzojTBXY="
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue