mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Added libsigsegv
svn path=/nixpkgs/trunk/; revision=1313
This commit is contained in:
parent
27c2b77154
commit
c0ca2228c8
9
pkgs/development/libraries/libsigsegv/default.nix
Normal file
9
pkgs/development/libraries/libsigsegv/default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libsigsegv-2.1";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.gnu.org/pub/gnu/libsigsegv/libsigsegv-2.1.tar.gz;
|
||||
md5 = "6d75ca3fede5fbfd72a78bc918d9e174";
|
||||
};
|
||||
}
|
@ -475,6 +475,10 @@ rec {
|
||||
inherit fetchurl stdenv zlib;
|
||||
};
|
||||
|
||||
libsigsegv = (import ../development/libraries/libsigsegv) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
popt = (import ../development/libraries/popt) {
|
||||
inherit fetchurl stdenv gettext;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user