mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
libfilezilla: init at 0.3.1
This commit is contained in:
parent
5ea21d69f5
commit
94a401258d
19
pkgs/development/libraries/libfilezilla/default.nix
Normal file
19
pkgs/development/libraries/libfilezilla/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libfilezilla-${version}";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2";
|
||||||
|
sha256 = "1vshy00bz9l5nzphkxpd35plcfcrz2wha5qiic7mx5yywafdxbd4";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://lib.filezilla-project.org/;
|
||||||
|
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -7336,6 +7336,8 @@ let
|
|||||||
|
|
||||||
libfakekey = callPackage ../development/libraries/libfakekey { };
|
libfakekey = callPackage ../development/libraries/libfakekey { };
|
||||||
|
|
||||||
|
libfilezilla = callPackage ../development/libraries/libfilezilla { };
|
||||||
|
|
||||||
libfm = callPackage ../development/libraries/libfm { };
|
libfm = callPackage ../development/libraries/libfm { };
|
||||||
libfm-extra = callPackage ../development/libraries/libfm {
|
libfm-extra = callPackage ../development/libraries/libfm {
|
||||||
extraOnly = true;
|
extraOnly = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user