lol

breakpad: init at unstable-3b3469e

authored by

Potato Hatsue and committed by
Sandro Jäckel
d3b7a30e 44848434

+32
+30
pkgs/development/misc/breakpad/default.nix
··· 1 + { lib, stdenv, fetchgit }: 2 + let 3 + lss = fetchgit { 4 + url = "https://chromium.googlesource.com/linux-syscall-support"; 5 + rev = "d9ad2969b369a9f1c455fef92d04c7628f7f9eb8"; 6 + sha256 = "952dv+ZE1ge/WF5RyHmEqht+AofoRHKAeFmGasVF9BA="; 7 + }; 8 + in stdenv.mkDerivation { 9 + pname = "breakpad"; 10 + 11 + version = "unstable-3b3469e"; 12 + 13 + src = fetchgit { 14 + url = "https://chromium.googlesource.com/breakpad/breakpad"; 15 + rev = "3b3469e9ed0de3d02e4450b9b95014a4266cf2ff"; 16 + sha256 = "bRGOBrGPK+Zxp+KK+E5MFkYlDUNVhVeInVSwq+eCAF0="; 17 + }; 18 + 19 + postUnpack = '' 20 + ln -s ${lss} $sourceRoot/src/third_party/lss 21 + ''; 22 + 23 + meta = with lib; { 24 + description = "An open-source multi-platform crash reporting system"; 25 + homepage = "https://chromium.googlesource.com/breakpad"; 26 + license = licenses.bsd3; 27 + maintainers = with maintainers; [ berberman ]; 28 + platforms = with platforms; linux ++ darwin ++ windows; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 156 156 157 157 bacnet-stack = callPackage ../tools/networking/bacnet-stack {}; 158 158 159 + breakpad = callPackage ../development/misc/breakpad {}; 160 + 159 161 # Zip file format only allows times after year 1980, which makes e.g. Python wheel building fail with: 160 162 # ValueError: ZIP does not support timestamps before 1980 161 163 ensureNewerSourcesForZipFilesHook = ensureNewerSourcesHook { year = "1980"; };