usermount: switch to fetchFromGitHub

This commit is contained in:
Felix Buehler 2022-03-08 19:11:32 +01:00
parent cfc95ec96f
commit 8af8ab0f0e

View File

@ -1,13 +1,14 @@
{ lib, stdenv, fetchgit, pkg-config, dbus, libnotify, udisks2, gdk-pixbuf }:
{ lib, stdenv, fetchFromGitHub, pkg-config, dbus, libnotify, udisks2, gdk-pixbuf }:
stdenv.mkDerivation {
pname = "usermount";
version = "0.1";
src = fetchgit {
url = "https://github.com/tom5760/usermount.git";
src = fetchFromGitHub {
owner = "tom5760";
repo = "usermount";
rev = "0d6aba3c1f8fec80de502f5b92fd8b28041cc8e4";
sha256 = "0gpp0vwiwr7kgbhh26jspv3255662mnvnav6g8i2h0qxar8hf8w2";
sha256 = "sha256-giMHUVYdAygiemYru20VxpQixr5aGgHhevNkHvkG9z4=";
};
nativeBuildInputs = [ pkg-config ];