mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
78 lines
1.4 KiB
Nix
78 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, appstream-glib
|
|
, dblatex
|
|
, desktop-file-utils
|
|
, graphene
|
|
, gtk3
|
|
, gtk-mac-integration-gtk3
|
|
, intltool
|
|
, libxml2
|
|
, libxslt
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, poppler
|
|
, python3
|
|
, wrapGAppsHook3
|
|
# Building with docs are still failing in unstable-2023-09-28
|
|
, withDocs ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dia";
|
|
version = "unstable-2023-09-28";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "GNOME";
|
|
repo = "dia";
|
|
domain = "gitlab.gnome.org";
|
|
rev = "bd551bb2558dcc89bc0bf7b4dd85b38cd85ad322";
|
|
hash = "sha256-U+8TUE1ULt6MNxnvw9kFjCAVBecUy2Sarof6H9+kR7Q=";
|
|
};
|
|
|
|
# Required for the PDF plugin when building with clang.
|
|
CXXFLAGS = "-std=c++17";
|
|
|
|
preConfigure = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
buildInputs = [
|
|
graphene
|
|
gtk3
|
|
libxml2
|
|
python3
|
|
poppler
|
|
] ++
|
|
lib.optionals withDocs [
|
|
libxslt
|
|
] ++
|
|
lib.optionals stdenv.hostPlatform.isDarwin [
|
|
gtk-mac-integration-gtk3
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
desktop-file-utils
|
|
intltool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
] ++
|
|
lib.optionals withDocs [
|
|
dblatex
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Gnome Diagram drawing software";
|
|
mainProgram = "dia";
|
|
homepage = "http://live.gnome.org/Dia";
|
|
maintainers = with maintainers; [ raskin ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|