Compare commits
No commits in common. "fe7c6ac2159c812c317220f9ed8df5b5b026ac6d" and "60f71ed9a3504d511c94e30d41957643fce228e0" have entirely different histories.
fe7c6ac215
...
60f71ed9a3
20
README.md
20
README.md
|
@ -168,26 +168,6 @@ another ALSA plugin that lives in a separate package
|
||||||
export ALSA_PLUGIN_DIR=$(nix eval -f '<nixpkgs>' --raw pipewire)/lib/alsa-lib
|
export ALSA_PLUGIN_DIR=$(nix eval -f '<nixpkgs>' --raw pipewire)/lib/alsa-lib
|
||||||
```
|
```
|
||||||
|
|
||||||
### [`eta`](./pkgs/cmdline/eta)
|
|
||||||
|
|
||||||
Generic tool for monitoring ETA and progress of an arbitrary process.
|
|
||||||
|
|
||||||
<https://github.com/aioobe/eta>
|
|
||||||
|
|
||||||
### [`rbasefind`](./pkgs/rust/rbasefind)
|
|
||||||
|
|
||||||
A firmware base address search tool.
|
|
||||||
|
|
||||||
<https://github.com/sgayou/rbasefind>
|
|
||||||
|
|
||||||
**broken, do not use yet**
|
|
||||||
|
|
||||||
### [`cado-nfs`](./pkgs/crypto/cado-nfs)
|
|
||||||
|
|
||||||
Cado-NFS, An Implementation of the Number Field Sieve Algorithm
|
|
||||||
|
|
||||||
<https://gitlab.inria.fr/cado-nfs/cado-nfs>
|
|
||||||
|
|
||||||
## lib documentation
|
## lib documentation
|
||||||
|
|
||||||
### [`fetchFromSteam`](./lib/fetchsteam)
|
### [`fetchFromSteam`](./lib/fetchsteam)
|
||||||
|
|
|
@ -39,6 +39,4 @@ final: prev: {
|
||||||
rbasefind = prev.callPackage ./pkgs/rust/rbasefind {};
|
rbasefind = prev.callPackage ./pkgs/rust/rbasefind {};
|
||||||
|
|
||||||
eta = prev.callPackage ./pkgs/cmdline/eta {};
|
eta = prev.callPackage ./pkgs/cmdline/eta {};
|
||||||
|
|
||||||
cado-nfs = prev.callPackage ./pkgs/crypto/cado-nfs {};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,72 +0,0 @@
|
||||||
From b5e7381235ed64b58b267af8f796c50b01900464 Mon Sep 17 00:00:00 2001
|
|
||||||
From: xenia <xenia@awoo.systems>
|
|
||||||
Date: Wed, 20 Nov 2024 22:16:47 -0500
|
|
||||||
Subject: [PATCH] use PATH lookup for non-cado programs
|
|
||||||
|
|
||||||
---
|
|
||||||
scripts/cadofactor/cadoprograms.py | 9 +++++++++
|
|
||||||
1 file changed, 9 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/scripts/cadofactor/cadoprograms.py b/scripts/cadofactor/cadoprograms.py
|
|
||||||
index 6743480e1..946771f83 100755
|
|
||||||
--- a/scripts/cadofactor/cadoprograms.py
|
|
||||||
+++ b/scripts/cadofactor/cadoprograms.py
|
|
||||||
@@ -1,4 +1,5 @@
|
|
||||||
import os
|
|
||||||
+import shutil
|
|
||||||
import platform
|
|
||||||
import abc
|
|
||||||
import inspect
|
|
||||||
@@ -327,6 +328,8 @@ class Program(object, metaclass=InspectType):
|
|
||||||
# class attributes, which properties can't. Ergo dummy variables
|
|
||||||
binary = None
|
|
||||||
|
|
||||||
+ use_which = False
|
|
||||||
+
|
|
||||||
# This class variable definition should not be here. It gets overwritten
|
|
||||||
# when the InspectType meta-class creates the class object. The only purpose
|
|
||||||
# is to make pylint shut up about the class not having an init_signature
|
|
||||||
@@ -408,6 +411,8 @@ class Program(object, metaclass=InspectType):
|
|
||||||
self.execfile = execsubfile
|
|
||||||
elif os.path.isfile(execfile):
|
|
||||||
self.execfile = execfile
|
|
||||||
+ elif self.use_which and shutil.which(binary) is not None:
|
|
||||||
+ self.execfile = shutil.which(binary)
|
|
||||||
else:
|
|
||||||
self.execfile = os.sep.join([self.subdir, binary])
|
|
||||||
if not skip_check_binary_exists:
|
|
||||||
@@ -1251,6 +1256,7 @@ class SSH(Program):
|
|
||||||
binary = "ssh"
|
|
||||||
name = binary
|
|
||||||
path = "/usr/bin"
|
|
||||||
+ use_which = True
|
|
||||||
def __init__(self,
|
|
||||||
host: PositionalParameter(),
|
|
||||||
*args: PositionalParameter(),
|
|
||||||
@@ -1268,6 +1274,7 @@ class RSync(Program):
|
|
||||||
binary = "rsync"
|
|
||||||
name = binary
|
|
||||||
path = "/usr/bin"
|
|
||||||
+ use_which = True
|
|
||||||
def __init__(self,
|
|
||||||
sourcefile: PositionalParameter(),
|
|
||||||
remotefile: PositionalParameter(),
|
|
||||||
@@ -1278,6 +1285,7 @@ class Ls(Program):
|
|
||||||
binary = "ls"
|
|
||||||
name = binary
|
|
||||||
path = "/bin"
|
|
||||||
+ use_which = True
|
|
||||||
def __init__(self,
|
|
||||||
*args : PositionalParameter(),
|
|
||||||
long : Toggle('l')=None,
|
|
||||||
@@ -1288,6 +1296,7 @@ class Kill(Program):
|
|
||||||
binary = "kill"
|
|
||||||
name = binary
|
|
||||||
path = "/bin"
|
|
||||||
+ use_which = True
|
|
||||||
def __init__(self,
|
|
||||||
*args: PositionalParameter(),
|
|
||||||
signal: Parameter("s"),
|
|
||||||
--
|
|
||||||
2.44.2
|
|
||||||
|
|
|
@ -1,89 +0,0 @@
|
||||||
{
|
|
||||||
fetchFromGitLab,
|
|
||||||
lib,
|
|
||||||
stdenv,
|
|
||||||
|
|
||||||
# library deps
|
|
||||||
ecm,
|
|
||||||
gmp,
|
|
||||||
hwloc,
|
|
||||||
python3,
|
|
||||||
sqlite,
|
|
||||||
|
|
||||||
# runtime deps
|
|
||||||
openssh,
|
|
||||||
rsync,
|
|
||||||
util-linux,
|
|
||||||
coreutils,
|
|
||||||
|
|
||||||
# build deps
|
|
||||||
cmake,
|
|
||||||
curl,
|
|
||||||
inetutils,
|
|
||||||
perl,
|
|
||||||
|
|
||||||
makeWrapper,
|
|
||||||
|
|
||||||
# options
|
|
||||||
useArch ? "znver4",
|
|
||||||
useTune ? "znver4",
|
|
||||||
}: stdenv.mkDerivation rec {
|
|
||||||
pname = "cado-nfs";
|
|
||||||
git-rev = "bb65fdf0aaee0cea5e2da368bb87651d35d02603";
|
|
||||||
version = builtins.substring 0 7 git-rev;
|
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
|
||||||
domain = "gitlab.inria.fr";
|
|
||||||
owner = pname;
|
|
||||||
repo = pname;
|
|
||||||
rev = git-rev;
|
|
||||||
hash = "sha256-Ao8nX9rZ0ky7MK5qXGgMe4N160sPN/En6h/YdeI2/JU=";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
./0001-use-PATH-lookup-for-non-cado-programs.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
gmp
|
|
||||||
ecm
|
|
||||||
python3
|
|
||||||
sqlite
|
|
||||||
hwloc
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake
|
|
||||||
inetutils
|
|
||||||
curl
|
|
||||||
perl
|
|
||||||
|
|
||||||
makeWrapper
|
|
||||||
];
|
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = "-Wno-stringop-overflow"
|
|
||||||
+ (lib.optionalString (useArch != null) " -march=${useArch}")
|
|
||||||
+ (lib.optionalString (useTune != null) " -mtune=${useTune}");
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
patchShebangs --build .
|
|
||||||
'';
|
|
||||||
|
|
||||||
postConfigure = ''
|
|
||||||
patchShebangs --build .
|
|
||||||
'';
|
|
||||||
|
|
||||||
cadoBinPath = lib.makeBinPath [
|
|
||||||
openssh
|
|
||||||
rsync
|
|
||||||
util-linux
|
|
||||||
coreutils
|
|
||||||
];
|
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
wrapProgram $out/bin/cado-nfs-client.py \
|
|
||||||
--prefix PATH : ${cadoBinPath}
|
|
||||||
wrapProgram $out/bin/cado-nfs.py \
|
|
||||||
--prefix PATH : ${cadoBinPath}
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in New Issue