summary refs log tree commit diff
path: root/pkgs/development/libraries/mm-common
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-11-04 21:10:41 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-11-04 21:17:46 +0100
commit527dd6e833be4aff9874f296ae1bd5bd9ea3d27a (patch)
tree36d8ae15f094a36ee1c18f5662f94b005c2bd4d5 /pkgs/development/libraries/mm-common
parent7827d3f4497ed722fedca57fd4d5ca1a65c38256 (diff)
downloadnixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.tar
nixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.tar.gz
nixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.tar.bz2
nixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.tar.lz
nixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.tar.xz
nixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.tar.zst
nixpkgs-527dd6e833be4aff9874f296ae1bd5bd9ea3d27a.zip
mm-common: 0.9.12 → 1.0.0
https://download.gnome.org/sources/mm-common/1.0/mm-common-1.0.0.news
Diffstat (limited to 'pkgs/development/libraries/mm-common')
-rw-r--r--pkgs/development/libraries/mm-common/default.nix20
1 files changed, 16 insertions, 4 deletions
diff --git a/pkgs/development/libraries/mm-common/default.nix b/pkgs/development/libraries/mm-common/default.nix
index f590653df6b..9a789a58cca 100644
--- a/pkgs/development/libraries/mm-common/default.nix
+++ b/pkgs/development/libraries/mm-common/default.nix
@@ -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;