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.
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ fetchurl
|
|
, lib
|
|
, stdenv
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, gobject-introspection
|
|
, clutter
|
|
, gtk3
|
|
, gnome
|
|
}:
|
|
|
|
let
|
|
pname = "clutter-gtk";
|
|
version = "1.8.4";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "01ibniy4ich0fgpam53q252idm7f4fn5xg5qvizcfww90gn9652j";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
propagatedBuildInputs = [ clutter gtk3 ];
|
|
nativeBuildInputs = [ meson ninja pkg-config gobject-introspection ];
|
|
|
|
postPatch = ''
|
|
# ld: malformed 32-bit x.y.z version number: =1
|
|
substituteInPlace meson.build \
|
|
--replace "host_system == 'darwin'" "false"
|
|
'';
|
|
|
|
postBuild = "rm -rf $out/share/gtk-doc";
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Clutter-GTK";
|
|
homepage = "http://www.clutter-project.org/";
|
|
license = lib.licenses.lgpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|