csdr: fix build on aarch64
This commit is contained in:
parent
657a43860e
commit
4800b30f39
1 changed files with 3 additions and 1 deletions
|
@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
|
||||||
libsamplerate
|
libsamplerate
|
||||||
];
|
];
|
||||||
|
|
||||||
|
hardeningDisable = lib.optional stdenv.isAarch64 "format";
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
substituteInPlace "$out"/lib/pkgconfig/csdr.pc \
|
substituteInPlace "$out"/lib/pkgconfig/csdr.pc \
|
||||||
--replace '=''${prefix}//' '=/' \
|
--replace '=''${prefix}//' '=/' \
|
||||||
|
@ -30,11 +32,11 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
homepage = "https://github.com/jketterl/csdr";
|
homepage = "https://github.com/jketterl/csdr";
|
||||||
description = "A simple DSP library and command-line tool for Software Defined Radio";
|
description = "A simple DSP library and command-line tool for Software Defined Radio";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
maintainers = teams.c3d2.members;
|
maintainers = teams.c3d2.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue