summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/ftp
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-05-12 09:12:59 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-05-18 11:12:31 -0300
commit284e71527761ee75c6676f1e526605863a3b8edd (patch)
treec3855ef71a6e256f3862861023858f7144966a3c /pkgs/applications/networking/ftp
parent79424d9e3a837fd7194fde4d937567fd53f39fed (diff)
taxi: 0.0.1 -> 0.0.1-unstable=2020-09-03
Diffstat (limited to 'pkgs/applications/networking/ftp')
-rw-r--r--pkgs/applications/networking/ftp/taxi/default.nix49
1 files changed, 31 insertions, 18 deletions
diff --git a/pkgs/applications/networking/ftp/taxi/default.nix b/pkgs/applications/networking/ftp/taxi/default.nix
index 9e6ee864137b..66692f96c669 100644
--- a/pkgs/applications/networking/ftp/taxi/default.nix
+++ b/pkgs/applications/networking/ftp/taxi/default.nix
@@ -1,33 +1,48 @@
-{ lib, stdenv, fetchFromGitHub, nix-update-script, pantheon, pkg-config, meson, ninja, python3, vala
-, gtk3, libgee, libsoup, libsecret, gobject-introspection, wrapGAppsHook }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, gobject-introspection
+, gtk3
+, libgee
+, libsecret
+, libsoup
+, meson
+, ninja
+, nix-update-script
+, pantheon
+, pkg-config
+, python3
+, vala
+, wrapGAppsHook
+}:
stdenv.mkDerivation rec {
pname = "taxi";
- version = "0.0.1";
+ version = "0.0.1-unstable=2020-09-03";
src = fetchFromGitHub {
owner = "Alecaddd";
repo = pname;
- rev = "v${version}";
- sha256 = "01c552w68576pnsyqbwy3hjhbww6vys3r3s0wxjdiscjqj1aawqg";
+ rev = "74aade67fd9ba9e5bc10c950ccd8d7e48adc2ea1";
+ sha256 = "sha256-S/FeKJxIdA30CpfFVrQsALdq7Gy4F4+P50Ky5tmqKvM=";
};
nativeBuildInputs = [
- vala
gobject-introspection
meson
ninja
pkg-config
python3
+ vala
wrapGAppsHook
];
buildInputs = [
- pantheon.granite
- libgee
gtk3
+ libgee
libsecret
libsoup
+ pantheon.granite
];
postPatch = ''
@@ -35,17 +50,15 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py
'';
- passthru = {
- updateScript = nix-update-script {
- attrPath = pname;
- };
- };
-
meta = with lib; {
+ homepage = "https://github.com/Alecaddd/taxi";
description = "The FTP Client that drives you anywhere";
- homepage = "https://github.com/Alecaddd/taxi";
- license = licenses.gpl3Plus;
- maintainers = with maintainers; [ ];
- platforms = platforms.linux;
+ license = licenses.lgpl3Plus;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = platforms.linux;
+ };
+
+ passthru.updateScript = nix-update-script {
+ attrPath = pname;
};
}