19 stdenv.mkDerivation rec {
20 pname = "eos-installer";
23 src = fetchFromGitHub {
25 repo = "eos-installer";
26 rev = "Release_${version}";
27 sha256 = "BqvZglzFJabGXkI8hnLiw1r+CvM7kSKQPj8IKYBB6S4=";
28 fetchSubmodules = true;
49 substituteInPlace tests/test-scribe.c \
50 --replace /bin/true ${coreutils}/bin/true \
51 --replace /bin/false ${coreutils}/bin/false
55 "--libexecdir=${placeholder "out"}/bin"
56 "--cross-file=${writeText "crossfile.ini" ''
58 gpg = '${gnupg}/bin/gpg'
62 PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
66 enableParallelBuilding = true;
69 homepage = "https://github.com/endlessm/eos-installer";
70 description = "Installer UI which writes images to disk";
71 license = licenses.gpl2Plus;
72 maintainers = with maintainers; [ qyliss ];
73 mainProgram = "gnome-image-installer";
74 platforms = platforms.linux;