f5ce8f86df
This reverts commitfc23242220
, reversing changes made to754816b84b
. We don't have many binaries yet. Comment on the original merge commit.
32 lines
1.1 KiB
Nix
32 lines
1.1 KiB
Nix
{ stdenv, fetchurl, autoconf, automake, libtool, hostPlatform }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libatomic_ops-${version}";
|
|
version = "7.6.2";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-${version}.tar.gz"
|
|
"https://github.com/ivmai/libatomic_ops/releases/download/v${version}/libatomic_ops-${version}.tar.gz"
|
|
];
|
|
sha256 ="1rif2hjscq5mh639nsnjhb90c01gnmy1sbmj6x6hsn1xmpnj95r1";
|
|
};
|
|
|
|
# https://github.com/ivmai/libatomic_ops/pull/32
|
|
patches = if hostPlatform.isRiscV then [ ./riscv.patch ] else null;
|
|
|
|
nativeBuildInputs = stdenv.lib.optionals stdenv.isCygwin [ autoconf automake libtool ];
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isCygwin ''
|
|
sed -i -e "/libatomic_ops_gpl_la_SOURCES/a libatomic_ops_gpl_la_LIBADD = libatomic_ops.la" src/Makefile.am
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = {
|
|
description = ''A library for semi-portable access to hardware-provided atomic memory update operations'';
|
|
license = stdenv.lib.licenses.gpl2Plus ;
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|