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.
31 lines
1.0 KiB
Nix
31 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, wrapGAppsHook4
|
|
, cargo, desktop-file-utils, meson, ninja, pkg-config, rustc
|
|
, glib, gtk4, libadwaita, libxml2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "symbolic-preview";
|
|
version = "0.0.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.gnome.org/World/design/symbolic-preview/uploads/e2fed158fc0d267f2051302bcf14848b/symbolic-preview-${version}.tar.xz";
|
|
hash = "sha256-kx+70LCQzzWAw2Xd3fKGq941540IM3Y1+r4Em4MNWbw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cargo desktop-file-utils meson ninja pkg-config rustc wrapGAppsHook4
|
|
];
|
|
buildInputs = [ glib gtk4 libadwaita libxml2 ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/World/design/symbolic-preview";
|
|
description = "Symbolics made easy";
|
|
mainProgram = "symbolic-preview";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|