nixpkgs/pkgs/os-specific/linux/usermount/default.nix
Artturin f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00

31 lines
816 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, dbus, libnotify, udisks2, gdk-pixbuf }:
stdenv.mkDerivation {
pname = "usermount";
version = "0.1";
src = fetchFromGitHub {
owner = "tom5760";
repo = "usermount";
rev = "0d6aba3c1f8fec80de502f5b92fd8b28041cc8e4";
sha256 = "sha256-giMHUVYdAygiemYru20VxpQixr5aGgHhevNkHvkG9z4=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus libnotify udisks2 gdk-pixbuf ];
env.NIX_CFLAGS_COMPILE = "-DENABLE_NOTIFICATIONS";
installPhase = ''
mkdir -p $out/bin
mv usermount $out/bin/
'';
meta = {
homepage = "https://github.com/tom5760/usermount";
description = "A simple tool to automatically mount removable drives using UDisks2 and D-Bus";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};
}