lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pffft: init at 2022-04-10

+25
+23
pkgs/development/libraries/pffft/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "pffft"; 5 + version = "unstable-2022-04-10"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "marton78"; 9 + repo = pname; 10 + rev = "08f5ed2618ac06d7dcc83d209d7253dc215274d5"; 11 + sha256 = "sha256-9LfLQ17IRsbEwGQJZzhW2Av4en1KuJVicLrS2AyjUZY="; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + meta = with lib; { 17 + description = "Pretty Fast FFT (PFFFT) library"; 18 + homepage = "https://github.com/marton78/pffft"; 19 + license = licenses.bsd3; 20 + maintainers = with maintainers; [ sikmir ]; 21 + platforms = platforms.unix; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 8722 8722 8723 8723 pgbadger = perlPackages.callPackage ../tools/misc/pgbadger { }; 8724 8724 8725 + pffft = callPackage ../development/libraries/pffft { }; 8726 + 8725 8727 phash = callPackage ../development/libraries/phash { }; 8726 8728 8727 8729 pnmixer = callPackage ../tools/audio/pnmixer { };