mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
Merge pull request #296199 from Celibistrial/master
nbfc-linux: init at 0.1.15
This commit is contained in:
commit
3a55638035
|
@ -3429,6 +3429,12 @@
|
|||
githubId = 977929;
|
||||
name = "Cody Allen";
|
||||
};
|
||||
Celibistrial = {
|
||||
email = "ryan80222@gmail.com";
|
||||
github = "Celibistrial";
|
||||
githubId = 82810795;
|
||||
name = "Gaurav Choudhury";
|
||||
};
|
||||
centromere = {
|
||||
email = "nix@centromere.net";
|
||||
github = "centromere";
|
||||
|
|
38
pkgs/by-name/nb/nbfc-linux/package.nix
Normal file
38
pkgs/by-name/nb/nbfc-linux/package.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
autoreconfHook,
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "nbfc-linux";
|
||||
version = "0.1.15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nbfc-linux";
|
||||
repo = "nbfc-linux";
|
||||
rev = "${finalAttrs.version}";
|
||||
hash = "sha256-+xYr2uIxfMaMAaHGvvA+0WPZjwj3wVAc34e1DWsJLqE=";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue