lol

Merge pull request #29664 from womfoo/bump-fix/giv-0.9.26

giv: 20150811-git (broken) -> 0.9.26

authored by

Joachim F and committed by
GitHub
8ab95028 5257232a

+15 -9
+11 -6
pkgs/applications/graphics/giv/build.patch
··· 2 2 a typedef of size_t that failed at least on x86_64-linux. 3 3 4 4 diff --git a/SConstruct b/SConstruct 5 - index 16eccd9..603e931 100644 5 + index 9e752d6..f93f27f 100644 6 6 --- a/SConstruct 7 7 +++ b/SConstruct 8 - @@ -7,8 +7,7 @@ else: 9 - cppflags = ['-O2'] 10 - variant = 'Release' 8 + @@ -9,13 +9,7 @@ else: 9 + 10 + commit_id = os.popen('git rev-parse HEAD').read().replace('\n','') 11 11 12 12 -env = Environment(LIBPATH=[], 13 - - CPPFLAGS = cppflags) 13 + - CPPFLAGS = cppflags + ['-Wno-deprecated-declarations', 14 + - '-Wno-reorder', 15 + - '-Wno-unused-but-set-variable', 16 + - '-Wno-unused-function'], 17 + - CXXFLAGS=['-std=c++1y'] 18 + - ) 14 19 +env = Environment(ENV = os.environ) 15 20 16 21 env['SBOX'] = False 17 - 22 + env['COMMITIDSHORT'] = commit_id[0:6]
+4 -3
pkgs/applications/graphics/giv/default.nix
··· 2 2 pcre, cfitsio, perl, gob2, vala_0_23, libtiff, json_glib }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "giv-20150811-git"; 5 + name = "giv-${version}"; 6 + version = "0.9.26"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "dov"; 9 10 repo = "giv"; 10 - rev = "64648bfbbf10ec4a9adfbc939c96c7d1dbdce57a"; 11 - sha256 = "1sz2n7jbmg3g97bs613xxjpzqbsl5rvpg6v7g3x3ycyd35r8vsfp"; 11 + rev = "v${version}"; 12 + sha256 = "1sfm8j3hvqij6z3h8xz724d7hjqqbzljl2a6pp4yjpnnrxksnic2"; 12 13 }; 13 14 14 15 hardeningDisable = [ "format" ];