Merge pull request #203013 from chuangzhu/thumbdrives
This commit is contained in:
commit
0180c8ff59
2 changed files with 64 additions and 0 deletions
62
pkgs/applications/system/thumbdrives/default.nix
Normal file
62
pkgs/applications/system/thumbdrives/default.nix
Normal file
|
@ -0,0 +1,62 @@
|
|||
{ lib
|
||||
, python3
|
||||
, fetchFromSourcehut
|
||||
, gtk3
|
||||
, libhandy_0
|
||||
, gobject-introspection
|
||||
, meson
|
||||
, pkg-config
|
||||
, ninja
|
||||
, gettext
|
||||
, glib
|
||||
, desktop-file-utils
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "thumbdrives";
|
||||
version = "0.3.1";
|
||||
|
||||
format = "other";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~martijnbraam";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-CPZKswbvsG61A6J512FOCKAntoJ0sUb2s+MKb0rO+Xw=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs build-aux/meson
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
pkg-config
|
||||
ninja
|
||||
gettext
|
||||
glib
|
||||
gtk3
|
||||
desktop-file-utils
|
||||
wrapGAppsHook
|
||||
gobject-introspection
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
libhandy_0
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
pygobject3
|
||||
pyxdg
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "USB mass storage emulator for Linux handhelds";
|
||||
homepage = "https://sr.ht/~martijnbraam/thumbdrives/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ chuangzhu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -12199,6 +12199,8 @@ with pkgs;
|
|||
|
||||
threema-desktop = callPackage ../applications/networking/instant-messengers/threema-desktop { };
|
||||
|
||||
thumbdrives = callPackage ../applications/system/thumbdrives { };
|
||||
|
||||
tidy-viewer = callPackage ../tools/text/tidy-viewer { };
|
||||
|
||||
tiled = libsForQt5.callPackage ../applications/editors/tiled { };
|
||||
|
|
Loading…
Reference in a new issue