taxi: 0.0.1 -> 0.0.1-unstable=2020-09-03

This commit is contained in:
AndersonTorres 2021-05-12 09:12:59 -03:00
parent 79424d9e3a
commit 284e715277

View File

@ -1,33 +1,48 @@
{ lib, stdenv, fetchFromGitHub, nix-update-script, pantheon, pkg-config, meson, ninja, python3, vala { lib
, gtk3, libgee, libsoup, libsecret, gobject-introspection, wrapGAppsHook }: , stdenv
, fetchFromGitHub
, gobject-introspection
, gtk3
, libgee
, libsecret
, libsoup
, meson
, ninja
, nix-update-script
, pantheon
, pkg-config
, python3
, vala
, wrapGAppsHook
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "taxi"; pname = "taxi";
version = "0.0.1"; version = "0.0.1-unstable=2020-09-03";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Alecaddd"; owner = "Alecaddd";
repo = pname; repo = pname;
rev = "v${version}"; rev = "74aade67fd9ba9e5bc10c950ccd8d7e48adc2ea1";
sha256 = "01c552w68576pnsyqbwy3hjhbww6vys3r3s0wxjdiscjqj1aawqg"; sha256 = "sha256-S/FeKJxIdA30CpfFVrQsALdq7Gy4F4+P50Ky5tmqKvM=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
vala
gobject-introspection gobject-introspection
meson meson
ninja ninja
pkg-config pkg-config
python3 python3
vala
wrapGAppsHook wrapGAppsHook
]; ];
buildInputs = [ buildInputs = [
pantheon.granite
libgee
gtk3 gtk3
libgee
libsecret libsecret
libsoup libsoup
pantheon.granite
]; ];
postPatch = '' postPatch = ''
@ -35,17 +50,15 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py patchShebangs meson/post_install.py
''; '';
passthru = { meta = with lib; {
updateScript = nix-update-script { homepage = "https://github.com/Alecaddd/taxi";
attrPath = pname; description = "The FTP Client that drives you anywhere";
}; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
}; };
meta = with lib; { passthru.updateScript = nix-update-script {
description = "The FTP Client that drives you anywhere"; attrPath = pname;
homepage = "https://github.com/Alecaddd/taxi";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
}; };
} }