depot/pkgs/by-name/nb/nbfc-linux/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

38 lines
907 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nbfc-linux";
version = "0.2.7";
src = fetchFromGitHub {
owner = "nbfc-linux";
repo = "nbfc-linux";
rev = "${finalAttrs.version}";
hash = "sha256-1tLW/xEh01y8BjVbgIa95DkYWf7CDVSo/lI/1U28Xs8=";
};
nativeBuildInputs = [
autoreconfHook
];
configureFlags = [
"--prefix=${placeholder "out"}"
"--sysconfdir=${placeholder "out"}/etc"
"--bindir=${placeholder "out"}/bin"
];
meta = {
description = "C port of Stefan Hirschmann's NoteBook FanControl";
longDescription = ''
nbfc-linux provides fan control service for notebooks
'';
homepage = "https://github.com/nbfc-linux/nbfc-linux";
license = lib.licenses.gpl3;
maintainers = [lib.maintainers.Celibistrial];
mainProgram = "nbfc";
platforms = lib.platforms.linux;
};
})