File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change 11{ stdenv
22, lib
3- , fetchpatch
43, fetchurl
54, makeWrapper
65, readline
6766stdenv . mkDerivation rec {
6867 pname = "gap" ;
6968 # https://www.gap-system.org/Releases/
70- version = "4.12.2 " ;
69+ version = "4.13.1 " ;
7170
7271 src = fetchurl {
7372 url = "https://github.com/gap-system/gap/releases/download/v${ version } /gap-${ version } .tar.gz" ;
74- sha256 = "sha256-ZyMIdF63iiIklO6N1nhu3VvDMUVvzGRWrAZL2yjVh6g =" ;
73+ sha256 = "sha256-l5Tb26b7mY4KLQqoziH8iEitPT+cyZk7C44gvn4dvro =" ;
7574 } ;
7675
77- patches = [
78- ( fetchpatch {
79- url = "https://github.com/gap-system/gap/commit/c786e229413a44b7462196716b99ae9bb0071f4c.patch" ;
80- hash = "sha256-g3jrEMSavHAUKlHoPqWmOw49hWHU+29SA788Klnr0Uw=" ;
81- } )
82- ] ;
83-
8476 # remove all non-essential packages (which take up a lot of space)
8577 preConfigure = lib . optionalString ( ! keepAll ) ( removeNonWhitelistedPkgs packagesToKeep ) + ''
8678 patchShebangs .
You can’t perform that action at this time.
0 commit comments