mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
taxi: init at 0.0.1
This commit is contained in:
parent
59821548f0
commit
3865974177
47
pkgs/applications/networking/ftp/taxi/default.nix
Normal file
47
pkgs/applications/networking/ftp/taxi/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ stdenv, fetchFromGitHub, vala, pkgconfig, meson, ninja, python3, granite
|
||||||
|
, gtk3, gnome3, libsoup, libsecret, gobjectIntrospection, wrapGAppsHook }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "taxi";
|
||||||
|
version = "0.0.1";
|
||||||
|
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Alecaddd";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "01c552w68576pnsyqbwy3hjhbww6vys3r3s0wxjdiscjqj1aawqg";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
gobjectIntrospection
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
vala
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gnome3.libgee
|
||||||
|
granite
|
||||||
|
gtk3
|
||||||
|
libsecret
|
||||||
|
libsoup
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x meson/post_install.py
|
||||||
|
patchShebangs meson/post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The FTP Client that drives you anywhere";
|
||||||
|
homepage = https://github.com/Alecaddd/taxi;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ worldofpeace ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -17793,6 +17793,8 @@ with pkgs;
|
||||||
|
|
||||||
typora = callPackage ../applications/editors/typora { };
|
typora = callPackage ../applications/editors/typora { };
|
||||||
|
|
||||||
|
taxi = callPackage ../applications/networking/ftp/taxi { };
|
||||||
|
|
||||||
librep = callPackage ../development/libraries/librep { };
|
librep = callPackage ../development/libraries/librep { };
|
||||||
|
|
||||||
rep-gtk = callPackage ../development/libraries/rep-gtk { };
|
rep-gtk = callPackage ../development/libraries/rep-gtk { };
|
||||||
|
|
Loading…
Reference in a new issue