mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
dfilemanager: move to by-name (#400240)
This commit is contained in:
commit
4341057df6
2 changed files with 12 additions and 12 deletions
|
@ -1,15 +1,13 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
mkDerivation,
|
stdenv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
cmake,
|
cmake,
|
||||||
|
libsForQt5,
|
||||||
file,
|
file,
|
||||||
qtbase,
|
|
||||||
qttools,
|
|
||||||
solid,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "dfilemanager";
|
pname = "dfilemanager";
|
||||||
version = "unstable-2021-02-20";
|
version = "unstable-2021-02-20";
|
||||||
|
|
||||||
|
@ -17,15 +15,18 @@ mkDerivation {
|
||||||
owner = "probonopd";
|
owner = "probonopd";
|
||||||
repo = "dfilemanager";
|
repo = "dfilemanager";
|
||||||
rev = "61179500a92575e05cf9a71d401c388726bfd73d";
|
rev = "61179500a92575e05cf9a71d401c388726bfd73d";
|
||||||
sha256 = "sha256-BHd2dZDVxy82vR6PyXIS5M6zBGJ4bQfOhdBCdOww4kc=";
|
hash = "sha256-BHd2dZDVxy82vR6PyXIS5M6zBGJ4bQfOhdBCdOww4kc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
libsForQt5.wrapQtAppsHook
|
||||||
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qtbase
|
libsForQt5.qtbase
|
||||||
qttools
|
libsForQt5.qttools
|
||||||
|
libsForQt5.solid
|
||||||
file
|
file
|
||||||
solid
|
|
||||||
];
|
];
|
||||||
|
|
||||||
cmakeFlags = [ "-DQT5BUILD=true" ];
|
cmakeFlags = [ "-DQT5BUILD=true" ];
|
||||||
|
@ -36,5 +37,6 @@ mkDerivation {
|
||||||
mainProgram = "dfm";
|
mainProgram = "dfm";
|
||||||
license = lib.licenses.gpl2;
|
license = lib.licenses.gpl2;
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -13872,8 +13872,6 @@ with pkgs;
|
||||||
|
|
||||||
dfasma = libsForQt5.callPackage ../applications/audio/dfasma { };
|
dfasma = libsForQt5.callPackage ../applications/audio/dfasma { };
|
||||||
|
|
||||||
dfilemanager = libsForQt5.callPackage ../applications/file-managers/dfilemanager { };
|
|
||||||
|
|
||||||
direwolf = callPackage ../applications/radio/direwolf {
|
direwolf = callPackage ../applications/radio/direwolf {
|
||||||
hamlib = hamlib_4;
|
hamlib = hamlib_4;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue