nixpkgs/pkgs/by-name/ff/ffts/package.nix
Ben Gamari 30a4e6db2a ffts: init at unstable-2019-03-19
Co-Authored-By: Hans Baier <foss@hans-baier.de>
2024-09-11 09:24:14 -04:00

31 lines
659 B
Nix

{
stdenv,
lib,
cmake,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
pname = "ffts";
version = "0-unstable-2019-03-19";
src = fetchFromGitHub {
owner = "linkotec";
repo = "ffts";
rev = "2c8da4877588e288ff4cd550f14bec2dc7bf668c";
hash = "sha256-Cj0n7fwFAu6+3ojgczL0Unobdx/XzGNFvNVMXdyHXE4=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DENABLE_SHARED=ON" ];
meta = {
description = "The Fastest Fourier Transform in the South";
homepage = "https://github.com/linkotec/ffts";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bgamari ];
platforms = lib.platforms.linux;
};
}