mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub,
|
|
autoconf, automake, libtool, cmake,
|
|
rtl-sdr, libao, fftwFloat
|
|
} :
|
|
let
|
|
src_faad2 = fetchFromGitHub {
|
|
owner = "dsvensson";
|
|
repo = "faad2";
|
|
rev = "b7aa099fd3220b71180ed2b0bc19dc6209a1b418";
|
|
sha256 = "0pcw2x9rjgkf5g6irql1j4m5xjb4lxj6468z8v603921bnir71mf";
|
|
};
|
|
|
|
version = "1.0";
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "nrsc5";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theori-io";
|
|
repo = "nrsc5";
|
|
rev = "v${version}";
|
|
sha256 = "09zzh3h1zzf2lwrbz3i7rif2hw36d9ska8irvxaa9lz6xc1y68pg";
|
|
};
|
|
|
|
postUnpack = ''
|
|
export srcRoot=`pwd`
|
|
export faadSrc="$srcRoot/faad2-prefix/src/faad2_external"
|
|
mkdir -p $faadSrc
|
|
cp -r ${src_faad2}/* $faadSrc
|
|
chmod -R u+w $faadSrc
|
|
'';
|
|
|
|
postPatch = ''
|
|
sed -i '/GIT_REPOSITORY/d' CMakeLists.txt
|
|
sed -i '/GIT_TAG/d' CMakeLists.txt
|
|
sed -i "s:set (FAAD2_PREFIX .*):set (FAAD2_PREFIX \"$srcRoot/faad2-prefix\"):" CMakeLists.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake autoconf automake libtool ];
|
|
buildInputs = [ rtl-sdr libao fftwFloat ];
|
|
|
|
cmakeFlags = [ "-DUSE_COLOR=ON" "-DUSE_FAAD2=ON" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/theori-io/nrsc5";
|
|
description = "HD-Radio decoder for RTL-SDR";
|
|
platforms = lib.platforms.linux;
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
mainProgram = "nrsc5";
|
|
};
|
|
}
|
|
|