spacefm: 1.0.1 -> 1.0.4
This commit is contained in:
parent
7ae05edcdd
commit
a7cda4b68a
1 changed files with 17 additions and 14 deletions
|
@ -1,12 +1,16 @@
|
||||||
{ pkgs, fetchurl, stdenv, gtk3, udev, desktop_file_utils, shared_mime_info , intltool, pkgconfig, makeWrapper, ffmpegthumbnailer, jmtpfs, ifuse, lsof, udisks, hicolor_icon_theme, adwaita-icon-theme }:
|
{ pkgs, fetchFromGitHub, stdenv, gtk3, udev, desktop_file_utils, shared_mime_info
|
||||||
|
, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer, jmtpfs, ifuse, lsof, udisks
|
||||||
|
, hicolor_icon_theme, adwaita-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "spacefm-${version}";
|
name = "spacefm-${version}";
|
||||||
version = "1.0.1";
|
version = "1.0.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/IgnorantGuru/spacefm/archive/${version}.tar.gz";
|
owner = "IgnorantGuru";
|
||||||
sha256 = "0mps6akwzr4mkljgywpimwgqf6ajnd7gq615877h20wyjf4h46vz";
|
repo = "spacefm";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1jywsb5yjrq4w9m94m4mbww36npd1jk6s0b59liz6965hv3xp2sy";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
@ -14,23 +18,22 @@ stdenv.mkDerivation rec {
|
||||||
"--with-preferable-sudo=${pkgs.sudo}/bin/sudo"
|
"--with-preferable-sudo=${pkgs.sudo}/bin/sudo"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig makeWrapper ffmpegthumbnailer jmtpfs ifuse lsof udisks ];
|
preConfigure = ''
|
||||||
|
configureFlags="$configureFlags --sysconfdir=$out/etc"
|
||||||
preFixup = ''
|
|
||||||
wrapProgram "$out/bin/spacefm" \
|
|
||||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig wrapGAppsHook ffmpegthumbnailer jmtpfs ifuse lsof udisks ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A multi-panel tabbed file manager";
|
description = "A multi-panel tabbed file manager";
|
||||||
longDescription = "Multi-panel tabbed file and desktop manager for Linux
|
longDescription = ''
|
||||||
|
Multi-panel tabbed file and desktop manager for Linux
|
||||||
with built-in VFS, udev- or HAL-based device manager,
|
with built-in VFS, udev- or HAL-based device manager,
|
||||||
customizable menu system, and bash integration
|
customizable menu system, and bash integration
|
||||||
";
|
'';
|
||||||
homepage = http://ignorantguru.github.io/spacefm/;
|
homepage = http://ignorantguru.github.io/spacefm/;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = [ maintainers.jagajaga ];
|
maintainers = with maintainers; [ jagajaga obadz ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue