mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 12:34:15 +00:00
Merge pull request #245930 from khaneliman/btrfs-assistant
btrfs-assistant: init at 1.8
This commit is contained in:
commit
47224fd0c5
89
pkgs/tools/misc/btrfs-assistant/default.nix
Normal file
89
pkgs/tools/misc/btrfs-assistant/default.nix
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitLab
|
||||||
|
, bash
|
||||||
|
, btrfs-progs
|
||||||
|
, cmake
|
||||||
|
, coreutils
|
||||||
|
, git
|
||||||
|
, pkg-config
|
||||||
|
, qtbase
|
||||||
|
, qtsvg
|
||||||
|
, qttools
|
||||||
|
, snapper
|
||||||
|
, util-linux
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, enableSnapper ? true
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "btrfs-assistant";
|
||||||
|
version = "1.8";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "btrfs-assistant";
|
||||||
|
repo = "btrfs-assistant";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
hash = "sha256-Ay2wxDVue+tG09RgAo4Zg2ktlq6dk7GdIwAlbuVULB4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
git
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
btrfs-progs
|
||||||
|
qtbase
|
||||||
|
qtsvg
|
||||||
|
qttools
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ wrapQtAppsHook ];
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace src/util/System.cpp \
|
||||||
|
--replace '/bin/bash' "${lib.getExe bash}"
|
||||||
|
''
|
||||||
|
+ lib.optionalString enableSnapper ''
|
||||||
|
substituteInPlace src/main.cpp \
|
||||||
|
--replace '/usr/bin/snapper' "${lib.getExe snapper}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace src/org.btrfs-assistant.pkexec.policy \
|
||||||
|
--replace '/usr/bin' "$out/bin"
|
||||||
|
|
||||||
|
substituteInPlace src/btrfs-assistant \
|
||||||
|
--replace 'btrfs-assistant-bin' "$out/bin/btrfs-assistant-bin"
|
||||||
|
|
||||||
|
substituteInPlace src/btrfs-assistant-launcher \
|
||||||
|
--replace 'btrfs-assistant' "$out/bin/btrfs-assistant"
|
||||||
|
''
|
||||||
|
+ lib.optionalString enableSnapper ''
|
||||||
|
substituteInPlace src/btrfs-assistant.conf \
|
||||||
|
--replace '/usr/bin/snapper' "${lib.getExe snapper}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
qtWrapperArgs =
|
||||||
|
let
|
||||||
|
runtimeDeps = lib.makeBinPath ([
|
||||||
|
coreutils
|
||||||
|
util-linux
|
||||||
|
]
|
||||||
|
++ lib.optionals enableSnapper [ snapper ]);
|
||||||
|
in
|
||||||
|
[
|
||||||
|
"--prefix PATH : ${runtimeDeps}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A GUI management tool to make managing a Btrfs filesystem easier";
|
||||||
|
homepage = "https://gitlab.com/btrfs-assistant/btrfs-assistant";
|
||||||
|
license = lib.licenses.gpl3Only;
|
||||||
|
mainProgram = "btrfs-assistant-bin";
|
||||||
|
maintainers = with lib.maintainers; [ khaneliman ];
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
};
|
||||||
|
})
|
@ -3460,6 +3460,8 @@ with pkgs;
|
|||||||
|
|
||||||
boulder = callPackage ../tools/admin/boulder { };
|
boulder = callPackage ../tools/admin/boulder { };
|
||||||
|
|
||||||
|
btrfs-assistant = libsForQt5.callPackage ../tools/misc/btrfs-assistant { };
|
||||||
|
|
||||||
btrfs-heatmap = callPackage ../tools/filesystems/btrfs-heatmap { };
|
btrfs-heatmap = callPackage ../tools/filesystems/btrfs-heatmap { };
|
||||||
|
|
||||||
bucklespring = bucklespring-x11;
|
bucklespring = bucklespring-x11;
|
||||||
|
Loading…
Reference in New Issue
Block a user