2018-02-13 01:53:39 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, substituteAll
|
2019-11-07 14:39:09 +01:00
|
|
|
, nixosTests
|
2018-02-13 01:53:39 +01:00
|
|
|
|
|
|
|
, autoreconfHook
|
|
|
|
, docbook_xml_dtd_412
|
|
|
|
, docbook_xml_dtd_42
|
|
|
|
, docbook_xml_dtd_43
|
|
|
|
, docbook_xsl
|
|
|
|
, gettext
|
|
|
|
, libxml2
|
|
|
|
, libxslt
|
|
|
|
, pkgconfig
|
|
|
|
, xmlto
|
|
|
|
|
|
|
|
, acl
|
2020-04-19 10:48:42 +02:00
|
|
|
, breezy
|
2018-02-13 01:53:39 +01:00
|
|
|
, binutils
|
|
|
|
, bzip2
|
|
|
|
, coreutils
|
|
|
|
, cpio
|
2018-06-23 17:00:34 +02:00
|
|
|
, curl
|
2018-02-13 01:53:39 +01:00
|
|
|
, elfutils
|
|
|
|
, flatpak
|
|
|
|
, gitMinimal
|
|
|
|
, glib
|
2019-06-15 20:13:35 +02:00
|
|
|
, glibcLocales
|
|
|
|
, gnumake
|
|
|
|
, gnupg
|
2018-02-13 01:53:39 +01:00
|
|
|
, gnutar
|
2018-07-17 22:11:16 +02:00
|
|
|
, json-glib
|
2018-02-13 01:53:39 +01:00
|
|
|
, libcap
|
|
|
|
, libdwarf
|
|
|
|
, libsoup
|
2018-09-14 04:52:18 +02:00
|
|
|
, libyaml
|
2018-02-13 01:53:39 +01:00
|
|
|
, ostree
|
|
|
|
, patch
|
2019-06-15 20:13:35 +02:00
|
|
|
, python2
|
2018-02-13 01:53:39 +01:00
|
|
|
, rpm
|
|
|
|
, unzip
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2019-06-15 20:13:35 +02:00
|
|
|
installed_testdir = "${placeholder "installedTests"}/libexec/installed-tests/flatpak-builder";
|
|
|
|
installed_test_metadir = "${placeholder "installedTests"}/share/installed-tests/flatpak-builder";
|
2018-02-13 01:53:39 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "flatpak-builder";
|
2020-03-21 00:13:06 +01:00
|
|
|
version = "1.0.10";
|
2018-02-13 01:53:39 +01:00
|
|
|
|
2019-06-15 20:13:35 +02:00
|
|
|
outputs = [ "out" "doc" "man" "installedTests" ];
|
2018-02-13 01:53:39 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 23:52:01 +02:00
|
|
|
url = "https://github.com/flatpak/flatpak-builder/releases/download/${version}/${pname}-${version}.tar.xz";
|
2020-03-21 00:13:06 +01:00
|
|
|
sha256 = "1fn61cl1d33yd1jgqm8jpffjw3xlyyhkn032g14d9gnwkcaf4649";
|
2018-02-13 01:53:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
docbook_xml_dtd_412
|
|
|
|
docbook_xml_dtd_42
|
|
|
|
docbook_xml_dtd_43
|
|
|
|
docbook_xsl
|
|
|
|
gettext
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
pkgconfig
|
|
|
|
xmlto
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
acl
|
|
|
|
bzip2
|
2018-06-23 17:00:34 +02:00
|
|
|
curl
|
2018-02-13 01:53:39 +01:00
|
|
|
elfutils
|
|
|
|
flatpak
|
|
|
|
glib
|
2018-07-17 22:11:16 +02:00
|
|
|
json-glib
|
2018-02-13 01:53:39 +01:00
|
|
|
libcap
|
|
|
|
libdwarf
|
|
|
|
libsoup
|
|
|
|
libxml2
|
2018-09-14 04:52:18 +02:00
|
|
|
libyaml
|
2018-02-13 01:53:39 +01:00
|
|
|
ostree
|
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# patch taken from gtk_doc
|
|
|
|
./respect-xml-catalog-files-var.patch
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
2020-04-19 10:48:42 +02:00
|
|
|
bzr = "${breezy}/bin/bzr";
|
2018-02-13 01:53:39 +01:00
|
|
|
cp = "${coreutils}/bin/cp";
|
|
|
|
patch = "${patch}/bin/patch";
|
|
|
|
tar = "${gnutar}/bin/tar";
|
|
|
|
unzip = "${unzip}/bin/unzip";
|
|
|
|
rpm2cpio = "${rpm}/bin/rpm2cpio";
|
|
|
|
cpio = "${cpio}/bin/cpio";
|
|
|
|
git = "${gitMinimal}/bin/git";
|
|
|
|
rofilesfuse = "${ostree}/bin/rofiles-fuse";
|
|
|
|
strip = "${binutils}/bin/strip";
|
|
|
|
eustrip = "${elfutils}/bin/eu-strip";
|
|
|
|
euelfcompress = "${elfutils}/bin/eu-elfcompress";
|
|
|
|
})
|
2019-06-15 20:13:35 +02:00
|
|
|
|
|
|
|
# The test scripts in Flatpak repo were updated so we are basing
|
|
|
|
# this on our patch for Flatpak 0.99.
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-test-paths.patch;
|
|
|
|
inherit glibcLocales python2;
|
|
|
|
})
|
2018-02-13 01:53:39 +01:00
|
|
|
];
|
|
|
|
|
2019-06-15 20:13:35 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-installed-tests"
|
|
|
|
];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"installed_testdir=${installed_testdir}"
|
|
|
|
"installed_test_metadir=${installed_test_metadir}"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Some scripts used by tests need to use shebangs that are available in Flatpak runtimes.
|
|
|
|
dontPatchShebangs = true;
|
|
|
|
|
|
|
|
# Installed tests
|
|
|
|
postFixup = ''
|
|
|
|
for file in ${installed_testdir}/{test-builder.sh,test-builder-python.sh}; do
|
|
|
|
patchShebangs $file
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
2019-11-07 14:39:09 +01:00
|
|
|
installedTestsDependencies = [
|
|
|
|
gnupg
|
|
|
|
ostree
|
|
|
|
python2
|
|
|
|
gnumake
|
|
|
|
];
|
|
|
|
|
|
|
|
tests = {
|
|
|
|
installedTests = nixosTests.installed-tests.flatpak-builder;
|
|
|
|
};
|
2019-06-15 20:13:35 +02:00
|
|
|
};
|
|
|
|
|
2018-02-13 01:53:39 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool to build flatpaks from source";
|
2020-03-21 00:13:06 +01:00
|
|
|
homepage = "https://github.com/flatpak/flatpak-builder";
|
|
|
|
license = licenses.lgpl21Plus;
|
2018-02-13 01:53:39 +01:00
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|