diff options
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4bd686fa69f..5e86eb21c7c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm | |||
| @@ -12856,24 +12856,25 @@ to build scalable network services based on a cluster of two or more nodes.") | |||
| 12856 | (package | 12856 | (package |
| 12857 | (name "ryzenadj") | 12857 | (name "ryzenadj") |
| 12858 | (version "0.17.0") | 12858 | (version "0.17.0") |
| 12859 | (source (origin | 12859 | (source |
| 12860 | (method url-fetch) | 12860 | (origin |
| 12861 | (uri (string-append "https://github.com/flygoat/ryzenadj/archive/refs/tags/" | 12861 | (method git-fetch) |
| 12862 | "v" version ".tar.gz")) | 12862 | (uri (git-reference |
| 12863 | (sha256 | 12863 | (url "https://github.com/flygoat/ryzenadj") |
| 12864 | (base32 "0i2x6kbn2ix52vjz1mmh0c0g3w0k4sn0lq68wbsk0pgndzcck2l4")) | 12864 | (commit (string-append "v" version)))) |
| 12865 | (modules '((guix build utils))) | 12865 | (file-name (git-file-name name version)) |
| 12866 | (snippet | 12866 | (sha256 |
| 12867 | '(begin (delete-file-recursively "win32") | 12867 | (base32 "0dpznl4h1f5syq5464a0h9grqlvlp0qmjxr59nq3gp363gr5vjfv")) |
| 12868 | #t)))) | 12868 | (modules '((guix build utils))) |
| 12869 | (snippet | ||
| 12870 | '(begin | ||
| 12871 | (delete-file-recursively "win32"))))) | ||
| 12869 | (build-system cmake-build-system) | 12872 | (build-system cmake-build-system) |
| 12870 | (inputs (list pciutils)) | 12873 | (inputs (list pciutils)) |
| 12871 | (arguments | 12874 | (arguments |
| 12872 | (list #:tests? #f ; No test suite | 12875 | (list |
| 12873 | #:phases #~(modify-phases %standard-phases | 12876 | #:tests? #f ;No test suite |
| 12874 | (add-before 'install 'build | 12877 | #:build-type "Release")) |
| 12875 | (lambda _ | ||
| 12876 | (invoke "cmake" "-DCMAKE_BUILD_TYPE=Release" ".")))))) | ||
| 12877 | (home-page "https://github.com/flygoat/ryzenadj") | 12878 | (home-page "https://github.com/flygoat/ryzenadj") |
| 12878 | (synopsis "Power management tool for AMD Ryzen APUs") | 12879 | (synopsis "Power management tool for AMD Ryzen APUs") |
| 12879 | (description | 12880 | (description |
