mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
d7f9a337ed
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from libatomic_ops
31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ stdenv, fetchurl, autoconf, automake, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libatomic_ops-${version}";
|
|
version = "7.6.6";
|
|
|
|
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 = "0x7071z707msvyrv9dmgahd1sghbkw8fpbagvcag6xs8yp2spzlr";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
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 = with stdenv.lib.platforms; unix ++ windows;
|
|
};
|
|
}
|