File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ { stdenv , fetchurl } :
2
+ stdenv . mkDerivation rec {
3
+ name = "${ pname } -${ version } " ;
4
+ pname = "bftpd" ;
5
+ version = "4.4" ;
6
+ # or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
7
+ src = fetchurl {
8
+ url = "mirror://sourceforge/project/${ pname } /${ pname } /${ name } /${ name } .tar.gz" ;
9
+ sha256 = "0hgpqwv7mj1yln8ps9bbcjhl5hvs02nxjfkk9nhkr6fysfyyn1dq" ;
10
+ } ;
11
+ buildInputs = [ ] ;
12
+ preConfigure = ''
13
+ sed -re 's/-[og] 0//g' -i Makefile*
14
+ '' ;
15
+ meta = {
16
+ inherit version ;
17
+ description = ''A minimal ftp server'' ;
18
+ license = stdenv . lib . licenses . gpl2Plus ;
19
+ maintainers = [ stdenv . lib . maintainers . raskin ] ;
20
+ platforms = stdenv . lib . platforms . linux ;
21
+ homepage = "http://bftpd.sf.net/" ;
22
+ downloadPage = "http://bftpd.sf.net/download.html" ;
23
+ } ;
24
+ }
Original file line number Diff line number Diff line change @@ -10016,6 +10016,8 @@ in
10016
10016
10017
10017
sabnzbd = callPackage ../servers/sabnzbd { };
10018
10018
10019
+ bftpd = callPackage ../servers/ftp/bftpd {};
10020
+
10019
10021
bind = callPackage ../servers/dns/bind { };
10020
10022
dnsutils = bind.dnsutils;
10021
10023
You can’t perform that action at this time.
0 commit comments