lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 33 lines 808 B view raw
1{ stdenv, fetchFromGitHub, wxGTK30, boost, firebird }: 2 3stdenv.mkDerivation rec { 4 version = "0.9.3.1"; 5 name = "flamerobin-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "mariuz"; 9 repo = "flamerobin"; 10 rev = version; 11 sha256 = "1wwcsca01hpgi9z5flvbdhs9zv7jvahnbn97j6ymy0hdyb8lv6si"; 12 }; 13 14 enableParallelBuilding = true; 15 16 buildInputs = [ wxGTK30 boost firebird ]; 17 18 preBuild = '' 19 sed -i 's/CXXFLAGS = -g -O2/CXXFLAGS = -g -O2 -nostartfiles/' Makefile 20 ''; 21 22 configureFlags = [ 23 "--disable-debug" 24 ]; 25 26 meta = with stdenv.lib; { 27 description = "Database administration tool for Firebird RDBMS"; 28 homepage = https://github.com/mariuz/flamerobin; 29 license = licenses.bsdOriginal; 30 maintainers = with maintainers; [ uralbash ]; 31 platforms = platforms.unix; 32 }; 33}