mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
0f84673f3d
Goodbye, and thanks for all the Nix...
30 lines
815 B
Nix
30 lines
815 B
Nix
{ stdenv, fetchurl, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "thinkfan-${version}";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/thinkfan/thinkfan-${version}.tar.gz";
|
|
sha256 = "0nz4c48f0i0dljpk5y33c188dnnwg8gz82s4grfl8l64jr4n675n";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = {
|
|
license = stdenv.lib.licenses.gpl3;
|
|
homepage = http://thinkfan.sourceforge.net/;
|
|
maintainers = with stdenv.lib.maintainers; [ domenkozar ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|