mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
add thinkfan package
This commit is contained in:
parent
04d41f95d0
commit
130c081966
29
pkgs/tools/system/thinkfan/default.nix
Normal file
29
pkgs/tools/system/thinkfan/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
let
|
||||
|
||||
version = "0.8.1";
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "thinkfan-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.sourceforge.net/project/thinkfan/thinkfan-${version}.tar.gz";
|
||||
sha256 = "04akla66r8k10x0jvmcpfi92hj2sppygcl7hhwn8n8zsvvf0yqxs";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv thinkfan $out/bin/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "";
|
||||
license = stdenv.lib.licences.gpl3;
|
||||
homePage = "http://thinkfan.sourceforge.net/";
|
||||
maintainers = with stdenv.lib.maintainers; [ iElectric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -9100,6 +9100,8 @@ let
|
||||
inherit texLive unzip;
|
||||
};
|
||||
|
||||
thinkfan = callPackage ../tools/system/thinkfan { };
|
||||
|
||||
vice = callPackage ../misc/emulators/vice { };
|
||||
|
||||
viewnior = callPackage ../applications/graphics/viewnior { };
|
||||
|
Loading…
Reference in New Issue
Block a user