2019-09-02 20:41:14 +02:00
|
|
|
{ stdenv, mkDerivation, fetchgit, cmake, file, qtbase, qttools, solid }:
|
2015-06-11 03:20:40 +02:00
|
|
|
|
|
|
|
let
|
2016-01-15 02:57:30 +01:00
|
|
|
version = "git-2016-01-10";
|
2015-06-11 03:20:40 +02:00
|
|
|
in
|
2019-09-02 20:41:14 +02:00
|
|
|
mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "dfilemanager";
|
|
|
|
inherit version;
|
2015-06-11 03:20:40 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.code.sf.net/p/dfilemanager/code";
|
2016-01-15 02:57:30 +01:00
|
|
|
rev = "2c5078b05e0ad74c037366be1ab3e6a03492bde4";
|
|
|
|
sha256 = "1qwhnlcc2j8sr1f3v63sxs3m7q7w1xy6c2jqsnznjgm23b5h3hxd";
|
2015-06-11 03:20:40 +02:00
|
|
|
};
|
|
|
|
|
2016-01-15 02:57:30 +01:00
|
|
|
buildInputs = [ cmake qtbase qttools file solid ];
|
2015-06-11 03:20:40 +02:00
|
|
|
|
2019-09-02 20:41:14 +02:00
|
|
|
cmakeFlags = [ "-DQT5BUILD=true" ];
|
2015-06-11 03:20:40 +02:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://dfilemanager.sourceforge.net/;
|
2017-02-25 00:16:28 +01:00
|
|
|
description = "File manager written in Qt/C++";
|
2015-09-08 04:52:07 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-06-11 03:20:40 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|