wxGTK31: init at 3.1

wxgtk31: overrideattrs
This commit is contained in:
Luke Adams
2017-07-09 18:31:51 -05:00
committed by Cray Elliott
parent 5e38fc024b
commit a5d44f6631
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ stdenv, fetchFromGitHub
, wxGTK30
}:
with stdenv.lib;
wxGTK30.overrideAttrs (oldAttrs : rec {
name = "wxwidgets-${version}";
version = "3.1.0";
src = fetchFromGitHub {
owner = "wxWidgets";
repo = "wxWidgets";
rev = "v${version}";
sha256 = "14kl1rsngm70v3mbyv1mal15iz2b18k97avjx8jn7s81znha1c7f";
};
})