nixpkgs/pkgs/development/tools/flatpak-builder/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

157 lines
3.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
2018-02-13 00:53:39 +00:00
, fetchurl
, substituteAll
2019-11-07 13:39:09 +00:00
, nixosTests
2018-02-13 00:53:39 +00:00
2024-01-09 11:59:10 +00:00
, docbook_xml_dtd_45
2018-02-13 00:53:39 +00:00
, docbook_xsl
, gettext
, libxml2
, libxslt
, pkg-config
2018-02-13 00:53:39 +00:00
, xmlto
2024-01-09 11:59:10 +00:00
, meson
, ninja
2018-02-13 00:53:39 +00:00
, acl
2024-01-09 11:59:10 +00:00
, appstream
2020-04-19 08:48:42 +00:00
, breezy
2018-02-13 00:53:39 +00:00
, binutils
, bzip2
, coreutils
, cpio
2018-06-23 15:00:34 +00:00
, curl
, debugedit
2018-02-13 00:53:39 +00:00
, elfutils
, flatpak
, gitMinimal
, glib
2019-06-15 18:13:35 +00:00
, glibcLocales
, gnumake
, gnupg
2018-02-13 00:53:39 +00:00
, gnutar
, json-glib
2018-02-13 00:53:39 +00:00
, libcap
, libsoup
2018-09-14 02:52:18 +00:00
, libyaml
2018-02-13 00:53:39 +00:00
, ostree
, patch
, rpm
, unzip
2024-01-09 11:59:10 +00:00
, attr
2018-02-13 00:53:39 +00:00
}:
let
2019-06-15 18:13:35 +00:00
installed_testdir = "${placeholder "installedTests"}/libexec/installed-tests/flatpak-builder";
2024-01-09 11:59:10 +00:00
in stdenv.mkDerivation (finalAttrs: {
2019-08-13 21:52:01 +00:00
pname = "flatpak-builder";
2024-01-09 11:59:10 +00:00
version = "1.4.2";
2018-02-13 00:53:39 +00:00
2019-06-15 18:13:35 +00:00
outputs = [ "out" "doc" "man" "installedTests" ];
2018-02-13 00:53:39 +00:00
2024-01-09 11:59:10 +00:00
# fetchFromGitHub fetches an archive which does not contain the full source (https://github.com/flatpak/flatpak-builder/issues/558)
2018-02-13 00:53:39 +00:00
src = fetchurl {
2024-01-09 11:59:10 +00:00
# TODO: remove the '-fixed-libglnx' in the next release
url = "https://github.com/flatpak/flatpak-builder/releases/download/${finalAttrs.version}/flatpak-builder-${finalAttrs.version}-fixed-libglnx.tar.xz";
hash = "sha256-wEG5dOA6LC082oig7+Hs9p+a30KhdY6sNB1VXnedBZY=";
2018-02-13 00:53:39 +00:00
};
patches = [
# patch taken from gtk_doc
./respect-xml-catalog-files-var.patch
# Hardcode paths
2018-02-13 00:53:39 +00:00
(substituteAll {
src = ./fix-paths.patch;
brz = "${breezy}/bin/brz";
2018-02-13 00:53:39 +00: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 18:13:35 +00:00
(substituteAll {
src = ./fix-test-paths.patch;
inherit glibcLocales;
2019-06-15 18:13:35 +00:00
})
2024-01-09 11:59:10 +00:00
./fix-test-prefix.patch
2018-02-13 00:53:39 +00:00
];
nativeBuildInputs = [
2024-01-09 11:59:10 +00:00
meson
ninja
docbook_xml_dtd_45
docbook_xsl
gettext
libxml2
libxslt
pkg-config
xmlto
];
buildInputs = [
acl
2024-01-09 11:59:10 +00:00
appstream
bzip2
curl
debugedit
elfutils
flatpak
glib
json-glib
libcap
libsoup
libxml2
libyaml
ostree
];
2024-01-09 11:59:10 +00:00
mesonFlags = [
"-Dinstalled_tests=true"
"-Dinstalled_test_prefix=${placeholder "installedTests"}"
2019-06-15 18:13:35 +00:00
];
# Some scripts used by tests need to use shebangs that are available in Flatpak runtimes.
dontPatchShebangs = true;
enableParallelBuilding = true;
2019-06-15 18:13:35 +00:00
# Installed tests
postFixup = ''
2024-01-09 11:59:10 +00:00
for file in ${installed_testdir}/{test-builder.sh,test-builder-python.sh,test-builder-deprecated.sh}; do
2019-06-15 18:13:35 +00:00
patchShebangs $file
done
'';
passthru = {
2019-11-07 13:39:09 +00:00
installedTestsDependencies = [
gnupg
ostree
gnumake
2024-01-09 11:59:10 +00:00
attr
libxml2
appstream
2019-11-07 13:39:09 +00:00
];
tests = {
installedTests = nixosTests.installed-tests.flatpak-builder;
};
2019-06-15 18:13:35 +00:00
};
meta = with lib; {
2018-02-13 00:53:39 +00:00
description = "Tool to build flatpaks from source";
mainProgram = "flatpak-builder";
homepage = "https://github.com/flatpak/flatpak-builder";
license = licenses.lgpl21Plus;
2024-01-09 11:59:10 +00:00
maintainers = with maintainers; [ arthsmn ];
2018-02-13 00:53:39 +00:00
platforms = platforms.linux;
};
2024-01-09 11:59:10 +00:00
})