lol
0
fork

Configure Feed

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

at 18.09-beta 31 lines 776 B view raw
1{ stdenv, fetchFromGitHub, qmake, qttools, qtbase }: 2 3stdenv.mkDerivation rec { 4 name = "calaos_installer-3.1"; 5 version = "3.1"; 6 7 src = fetchFromGitHub { 8 owner = "calaos"; 9 repo = "calaos_installer"; 10 rev = "v${version}"; 11 sha256 = "0g8igj5sax5vjqzrpbil7i6329708lqqwvg5mwiqd0zzzha9sawd"; 12 }; 13 14 nativeBuildInputs = [ qmake qttools ]; 15 buildInputs = [ qtbase ]; 16 17 qmakeFlags = [ "REVISION=${version}" ]; 18 19 installPhase = '' 20 mkdir -p $out/bin 21 cp -a calaos_installer $out/bin 22 ''; 23 24 meta = with stdenv.lib; { 25 description = "Calaos Installer, a tool to create calaos configuration"; 26 homepage = https://www.calaos.fr/; 27 license = licenses.gpl3Plus; 28 platforms = platforms.all; 29 maintainers = with maintainers; [ tiramiseb ]; 30 }; 31}