diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-06-14 02:46:25 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-06-14 02:46:25 +0200 |
commit | 4ba9c9f7bdf4117ee7d0408e36b67705aa7107ce (patch) | |
tree | ef83c8049a92fdb724a530b211198dc80deb26a2 /upstream/packages/nbfc.scm | |
parent | bb947fce2bb532a1c36ab9e5ab1c2c9abced9724 (diff) |
distribution: remove files related to abandoned NBFC service
Diffstat (limited to 'upstream/packages/nbfc.scm')
-rw-r--r-- | upstream/packages/nbfc.scm | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/upstream/packages/nbfc.scm b/upstream/packages/nbfc.scm deleted file mode 100644 index c34ecad..0000000 --- a/upstream/packages/nbfc.scm +++ /dev/null @@ -1,56 +0,0 @@ -(define-module (upstream packages nbfc) - #:use-module (gnu packages admin) - #:use-module (gnu packages autotools) - #:use-module (gnu packages linux) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages python) - #:use-module (guix utils) - #:use-module (guix build utils) - #:use-module (guix build-system gnu) - #:use-module (guix gexp) - #:use-module (guix git-download) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (guix packages)) - -(define-public nbfc-linux - (let ((version "0.2.7") - (revision "0")) - (package - (name "nbfc-linux") - (version version) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nbfc-linux/nbfc-linux") - (commit version))) - (file-name (git-file-name name version)) - (patches (list (local-file "nbfc.patch"))) - (sha256 - (base32 - "1ksypi6xagsjzsl583f2zrcihfg4pn380nrm0sy5rlr127zxdlnn")))) - (build-system gnu-build-system) - (arguments - `(#:make-flags (list (string-append "CC=" - ,(cc-for-target)) - (string-append "PREFIX=" - (assoc-ref %outputs "out")) - ;; (string-append "CONFDIR=" - ;; (assoc-ref %outputs "out") - ;; "/etc") - ;; (string-append "BINDIR=" - ;; (assoc-ref %outputs "out") - ;; "/bin") - ) - #:tests? #f - #:phases (modify-phases %standard-phases - (delete 'configure)))) - (native-inputs (list autoconf pkg-config)) - (inputs (list kmod)) - (propagated-inputs (list python dmidecode)) - (synopsis "NoteBook FanControl ported to Linux") - (description - "This package provides a C port of NoteBook FanControl (NBFC), a fan -control service for notebooks. It provides the same utilities with the same -interfaces as the original NBFC, although the implementation differs.") - (home-page "https://github.com/nbfc-linux/nbfc-linux") - (license license:gpl3+)))) |