2018-02-18 05:52:55 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, hostPlatform }:
|
2014-10-23 20:46:09 +00:00
|
|
|
|
2017-06-11 17:20:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libatomic_ops-${version}";
|
2017-12-27 00:03:12 +00:00
|
|
|
version = "7.6.2";
|
2014-10-23 20:46:09 +00:00
|
|
|
|
2014-06-27 12:02:29 +00:00
|
|
|
src = fetchurl {
|
2017-06-22 18:47:39 +00:00
|
|
|
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"
|
|
|
|
];
|
2017-12-27 00:03:12 +00:00
|
|
|
sha256 ="1rif2hjscq5mh639nsnjhb90c01gnmy1sbmj6x6hsn1xmpnj95r1";
|
2014-06-27 12:02:29 +00:00
|
|
|
};
|
2014-10-23 20:46:09 +00:00
|
|
|
|
2018-02-18 05:52:55 +00:00
|
|
|
# https://github.com/ivmai/libatomic_ops/pull/32
|
|
|
|
patches = if hostPlatform.isRiscV then [ ./riscv.patch ] else null;
|
|
|
|
|
2017-06-11 17:20:13 +00:00
|
|
|
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
|
|
|
|
'';
|
2014-10-23 20:46:09 +00:00
|
|
|
|
2014-06-27 12:02:29 +00:00
|
|
|
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];
|
2015-01-26 13:02:59 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-06-27 12:02:29 +00:00
|
|
|
};
|
|
|
|
}
|