mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +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.
31 lines
855 B
Nix
31 lines
855 B
Nix
{ lib, stdenv, fetchurl, pkg-config, glib, bison, flex, gnome }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gob2";
|
|
version = "2.0.20";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "5fe5d7990fd65b0d4b617ba894408ebaa6df453f2781c15a1cfdf2956c0c5428";
|
|
};
|
|
|
|
# configure script looks for d-bus but it is only needed for tests
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ glib bison flex ];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Preprocessor for making GObjects with inline C code";
|
|
mainProgram = "gob2";
|
|
homepage = "https://www.jirka.org/gob.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|