mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, asciidoc-full, gettext
|
|
, gobject-introspection, gtk3, libappindicator-gtk3, libnotify, librsvg
|
|
, udisks2, wrapGAppsHook
|
|
, python3Packages
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "udiskie";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coldfix";
|
|
repo = "udiskie";
|
|
rev = version;
|
|
sha256 = "0kn5w6bm3rmbszphzbxpjfnkawb2naa230svzkpmh3n6dcdvk4qa";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
asciidoc-full # For building man page.
|
|
gobject-introspection
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
librsvg # required for loading svg icons (udiskie uses svg icons)
|
|
gobject-introspection
|
|
libnotify
|
|
gtk3
|
|
udisks2
|
|
libappindicator-gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
docopt
|
|
pygobject3
|
|
pyyaml
|
|
];
|
|
|
|
postBuild = "make -C doc";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/man/man8
|
|
cp -v doc/udiskie.8 $out/share/man/man8/
|
|
'';
|
|
|
|
checkInputs = with python3Packages; [
|
|
nose
|
|
keyutils
|
|
];
|
|
|
|
checkPhase = ''
|
|
nosetests
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Removable disk automounter for udisks";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/coldfix/udiskie";
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|