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: 3ff71fcc8b3d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7785df3b907f
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on Mar 12, 2019

  1. udisks: 2.8.1 -> 2.8.2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/udisks/versions
    r-ryantm committed Mar 12, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    alexandre-abrioux Alexandre ABRIOUX
    Copy the full SHA
    b49b6e0 View commit details

Commits on Mar 18, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    alexandre-abrioux Alexandre ABRIOUX
    Copy the full SHA
    d3760f1 View commit details
  2. Merge pull request #57495 from r-ryantm/auto-update/udisks

    udisks: 2.8.1 -> 2.8.2
    dtzWill authored Mar 18, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7785df3 View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/os-specific/linux/udisks/2-default.nix
14 changes: 7 additions & 7 deletions pkgs/os-specific/linux/udisks/2-default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{ stdenv, fetchFromGitHub, substituteAll, libtool, pkgconfig, intltool, gnused
, gnome3, gtk-doc, acl, systemd, glib, libatasmart, polkit, coreutils, bash
{ stdenv, fetchFromGitHub, substituteAll, libtool, pkgconfig, gettext, gnused
, gtk-doc, acl, systemd, glib, libatasmart, polkit, coreutils, bash, which
, expat, libxslt, docbook_xsl, utillinux, mdadm, libgudev, libblockdev, parted
, gobject-introspection, docbook_xml_dtd_412, docbook_xml_dtd_43
, gobject-introspection, docbook_xml_dtd_412, docbook_xml_dtd_43, autoconf, automake
, xfsprogs, f2fs-tools, dosfstools, e2fsprogs, btrfs-progs, exfat, nilfs-utils, ntfs3g
}:

let
version = "2.8.1";
version = "2.8.2";
in stdenv.mkDerivation rec {
name = "udisks-${version}";

src = fetchFromGitHub {
owner = "storaged-project";
repo = "udisks";
rev = name;
sha256 = "073iqa0pwa7ab0qw33h3ic89508a78incmg6rq914d6br7s030zy";
sha256 = "000xf99id1f6w8l20jxm3f2g32v9wx68rzv6q2bwrfz6vmy76xwy";
};

outputs = [ "out" "man" "dev" "devdoc" ];
@@ -38,7 +38,7 @@ in stdenv.mkDerivation rec {
];

nativeBuildInputs = [
pkgconfig gnome3.gnome-common libtool intltool gobject-introspection
autoconf automake pkgconfig libtool gettext which gobject-introspection
gtk-doc libxslt docbook_xml_dtd_412 docbook_xml_dtd_43 docbook_xsl
];

@@ -52,7 +52,7 @@ in stdenv.mkDerivation rec {
expat libgudev libblockdev acl systemd glib libatasmart polkit
];

preConfigure = "./autogen.sh";
preConfigure = "NOCONFIGURE=1 ./autogen.sh";

configureFlags = [
"--enable-gtk-doc"