2009-08-09 22:24:05 +00:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-12-14 10:35:59 +00:00
|
|
|
name = "libsigsegv-2.10";
|
2009-08-09 22:24:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/libsigsegv/${name}.tar.gz";
|
2011-12-14 10:35:59 +00:00
|
|
|
sha256 = "16hrs8k3nmc7a8jam5j1fpspd6sdpkamskvsdpcw6m29vnis8q44";
|
2009-08-09 22:24:05 +00:00
|
|
|
};
|
|
|
|
|
2015-02-17 22:36:14 +00:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/6028
|
|
|
|
doCheck = false;
|
2009-08-09 22:24:05 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/libsigsegv/;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Library to handle page faults in user mode";
|
2009-08-09 22:24:05 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU libsigsegv is a library for handling page faults in user mode. A
|
|
|
|
page fault occurs when a program tries to access to a region of memory
|
|
|
|
that is currently not available. Catching and handling a page fault is
|
|
|
|
a useful technique for implementing pageable virtual memory,
|
|
|
|
memory-mapped access to persistent databases, generational garbage
|
|
|
|
collectors, stack overflow handlers, distributed shared memory, and
|
|
|
|
more.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-08-09 22:24:05 +00:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-08-09 22:24:05 +00:00
|
|
|
};
|
|
|
|
}
|