nixpkgs/pkgs/tools/system/thinkfan/default.nix

30 lines
815 B
Nix
Raw Normal View History

2015-12-27 20:21:43 +00:00
{ stdenv, fetchurl, cmake }:
2013-04-05 22:34:50 +00:00
2015-12-27 20:21:43 +00:00
stdenv.mkDerivation rec {
2013-04-05 22:34:50 +00:00
name = "thinkfan-${version}";
version = "0.9.3";
2013-04-05 22:34:50 +00:00
src = fetchurl {
2013-07-14 01:17:07 +00:00
url = "mirror://sourceforge/thinkfan/thinkfan-${version}.tar.gz";
sha256 = "0nz4c48f0i0dljpk5y33c188dnnwg8gz82s4grfl8l64jr4n675n";
2013-04-05 22:34:50 +00:00
};
2015-12-27 20:21:43 +00:00
nativeBuildInputs = [ cmake ];
2013-04-05 22:34:50 +00:00
installPhase = ''
install -Dm755 {.,$out/bin}/thinkfan
cd "$NIX_BUILD_TOP"; cd "$sourceRoot" # attempt to be a bit robust
install -Dm644 {.,$out/share/doc/thinkfan}/README
cp -R examples $out/share/doc/thinkfan
install -Dm644 {src,$out/share/man/man1}/thinkfan.1
2013-04-05 22:34:50 +00:00
'';
meta = {
2013-04-06 06:19:57 +00:00
license = stdenv.lib.licenses.gpl3;
homepage = http://thinkfan.sourceforge.net/;
maintainers = with stdenv.lib.maintainers; [ domenkozar ];
2013-04-05 22:34:50 +00:00
platforms = stdenv.lib.platforms.linux;
};
}