Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8134b501d827
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d34465eeca17
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 4, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    sikmir Nikolay Korotkiy
    Copy the full SHA
    527dd6e View commit details
  2. Merge pull request #72795 from jtojnar/mm-common-1.0

    mm-common: 0.9.12 → 1.0.0
    jtojnar authored Nov 4, 2019
    Copy the full SHA
    d34465e View commit details
Showing with 16 additions and 4 deletions.
  1. +16 −4 pkgs/development/libraries/mm-common/default.nix
20 changes: 16 additions & 4 deletions pkgs/development/libraries/mm-common/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
{ stdenv, fetchurl, gnome3 }:
{ stdenv
, fetchurl
, gnome3
, meson
, python3
, ninja
}:

stdenv.mkDerivation rec {
pname = "mm-common";
version = "0.9.12";
version = "1.0.0";

src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "02vwgv404b56wxy0gnm9xq9fvzgn9dhfqcy2hhl78ljv3v7drzyf";
sha256 = "1m4w33da9f4rx2d6kdj3ix3kl0gn16ml82v2mdn4hljr3q29nzdr";
};

nativeBuildInputs = [
meson
python3
ninja
];

passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
@@ -25,7 +37,7 @@ stdenv.mkDerivation rec {
control repository. An installation of mm-common is not required for
building tarball releases, unless configured to use maintainer-mode.
'';
homepage = https://www.gtkmm.org;
homepage = "https://www.gtkmm.org";
license = licenses.gpl2Plus;
maintainers = gnome3.maintainers;
platforms = platforms.linux;