mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Merge branch 'up' into hardened-stdenv
This commit is contained in:
commit
4036e9ba8c
@ -211,6 +211,7 @@
|
||||
meisternu = "Matt Miemiec <meister@krutt.org>";
|
||||
michelk = "Michel Kuhlmann <michel@kuhlmanns.info>";
|
||||
michaelpj = "Michael Peyton Jones <michaelpj@gmail.com>";
|
||||
mingchuan = "Ming Chuan <ming@culpring.com>";
|
||||
mirdhyn = "Merlin Gaillard <mirdhyn@gmail.com>";
|
||||
mschristiansen = "Mikkel Christiansen <mikkel@rheosystems.com>";
|
||||
modulistic = "Pablo Costa <modulistic@gmail.com>";
|
||||
|
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
|
||||
echo "let pkgs = import /etc/nixos/nixpkgs$2 {}; x = pkgs.callPackage $1 { $3 }; in ${4:-x}" |
|
||||
echo "let pkgs = import <nixpkgs$2> {}; x = pkgs.callPackage $1 { $3 }; in ${4:-x}" |
|
||||
nix-instantiate --show-trace - |
|
||||
xargs nix-store -r -K
|
||||
|
@ -127,6 +127,7 @@ in {
|
||||
in {
|
||||
description = "WPA Supplicant";
|
||||
|
||||
after = [ "network-interfaces.target" ];
|
||||
wantedBy = [ "network.target" ];
|
||||
|
||||
path = [ pkgs.wpa_supplicant ];
|
||||
|
@ -21,10 +21,9 @@ in
|
||||
chown -R root:root /var/lib/zerotier-one
|
||||
'';
|
||||
serviceConfig = {
|
||||
Type = "forking";
|
||||
User = "root";
|
||||
PIDFile = "/var/lib/zerotier-one/zerotier-one.pid";
|
||||
ExecStart = "${pkgs.zerotierone}/bin/zerotier-one -d";
|
||||
ExecStart = "${pkgs.zerotierone}/bin/zerotier-one";
|
||||
Restart = "always";
|
||||
KillMode = "process";
|
||||
};
|
||||
};
|
||||
environment.systemPackages = [ pkgs.zerotierone ];
|
||||
|
@ -173,7 +173,8 @@ let
|
||||
SSLRandomSeed connect builtin
|
||||
|
||||
SSLProtocol All -SSLv2 -SSLv3
|
||||
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!EXP
|
||||
SSLCipherSuite HIGH:!aNULL:!MD5:!EXP
|
||||
SSLHonorCipherOrder on
|
||||
'';
|
||||
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
assert stdenv.system == "x86_64-linux";
|
||||
|
||||
let
|
||||
version = "1.0.19.106.gb8a7150f";
|
||||
version = "1.0.23.93.gd6cfae15-30";
|
||||
|
||||
deps = [
|
||||
alsaLib
|
||||
@ -50,7 +50,7 @@ stdenv.mkDerivation {
|
||||
src =
|
||||
fetchurl {
|
||||
url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb";
|
||||
sha256 = "be6b99329bb2fccdc9d77bc949dd463576fdb40db7f56195b4284bd348c470be";
|
||||
sha256 = "0n6vz51jv6s20dp4zlqkk52bpmpyfm1qn5bfm4lfq09x1g6ir5lr";
|
||||
};
|
||||
|
||||
buildInputs = [ dpkg makeWrapper ];
|
||||
|
23
pkgs/applications/misc/pcmanx-gtk2/default.nix
Normal file
23
pkgs/applications/misc/pcmanx-gtk2/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, gtk2, libXft, intltool, automake115x, autoconf, libtool, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pcmanx-gtk2-1.3";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/pcman-bbs/pcmanx/archive/1.3.tar.gz";
|
||||
sha256 = "2e5c59f6b568036f2ad6ac67ca2a41dfeeafa185451e507f9fb987d4ed9c4302";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk2 libXft intltool automake115x autoconf libtool pkgconfig ];
|
||||
|
||||
preConfigurePhases = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://pcman.ptt.cc";
|
||||
license = licenses.gpl2;
|
||||
description = "Telnet BBS browser with GTK+ interface";
|
||||
maintainers = [ maintainers.mingchuan ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
||||
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml }:
|
||||
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla }:
|
||||
|
||||
let version = "3.14.1"; in
|
||||
let version = "3.15.0.2"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "filezilla-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
||||
sha256 = "0v6lb7miy6jbnswii816na8818xqxlvs1vadnii21xfmrsv7225i";
|
||||
sha256 = "0kvwkz01v73qi8y6n8wlidglwh0vg7pajsjm8xq7gch6jmq4cg1k";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [
|
||||
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
|
||||
pugixml ];
|
||||
pugixml libfilezilla ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://filezilla-project.org/;
|
||||
|
@ -1,8 +1,24 @@
|
||||
{ stdenv, fetchurl, ncurses, openssl, perl, python, aspell, gnutls
|
||||
, zlib, curl , pkgconfig, libgcrypt, ruby, lua5, tcl, guile
|
||||
, pythonPackages, cmake, makeWrapper, libobjc, libiconv
|
||||
{ stdenv, fetchurl, ncurses, openssl, aspell, gnutls
|
||||
, zlib, curl , pkgconfig, libgcrypt
|
||||
, cmake, makeWrapper, libobjc, libiconv
|
||||
, guileSupport ? true, guile
|
||||
, luaSupport ? true, lua5
|
||||
, perlSupport ? true, perl
|
||||
, pythonPackages
|
||||
, rubySupport ? true, ruby
|
||||
, tclSupport ? true, tcl
|
||||
, extraBuildInputs ? [] }:
|
||||
|
||||
assert guileSupport -> guile != null;
|
||||
assert luaSupport -> lua5 != null;
|
||||
assert perlSupport -> perl != null;
|
||||
assert rubySupport -> ruby != null;
|
||||
assert tclSupport -> tcl != null;
|
||||
|
||||
let
|
||||
inherit (pythonPackages) python pycrypto pync;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.4";
|
||||
name = "weechat-${version}";
|
||||
@ -12,14 +28,26 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1m6xq6izcac5186xvvmm8znfjzrg9hq42p69jabdvv7cri4rjvg0";
|
||||
};
|
||||
|
||||
cmakeFlags = stdenv.lib.optional stdenv.isDarwin
|
||||
"-DICONV_LIBRARY=${libiconv}/lib/libiconv.dylib";
|
||||
cmakeFlags = with stdenv.lib; []
|
||||
++ optional stdenv.isDarwin "-DICONV_LIBRARY=${libiconv}/lib/libiconv.dylib"
|
||||
++ optional (!guileSupport) "-DENABLE_GUILE=OFF"
|
||||
++ optional (!luaSupport) "-DENABLE_LUA=OFF"
|
||||
++ optional (!perlSupport) "-DENABLE_PERL=OFF"
|
||||
++ optional (!rubySupport) "-DENABLE_RUBY=OFF"
|
||||
++ optional (!tclSupport) "-DENABLE_TCL=OFF"
|
||||
;
|
||||
|
||||
buildInputs =
|
||||
[ ncurses perl python openssl aspell gnutls zlib curl pkgconfig
|
||||
libgcrypt ruby lua5 tcl guile pythonPackages.pycrypto makeWrapper
|
||||
cmake ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ pythonPackages.pync libobjc ]
|
||||
buildInputs = with stdenv.lib; [
|
||||
ncurses python openssl aspell gnutls zlib curl pkgconfig
|
||||
libgcrypt pycrypto makeWrapper
|
||||
cmake
|
||||
]
|
||||
++ optionals stdenv.isDarwin [ pync libobjc ]
|
||||
++ optional guileSupport guile
|
||||
++ optional luaSupport lua5
|
||||
++ optional perlSupport perl
|
||||
++ optional rubySupport ruby
|
||||
++ optional tclSupport tcl
|
||||
++ extraBuildInputs;
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${python}/include/${python.libPrefix} -DCA_FILE=/etc/ssl/certs/ca-certificates.crt";
|
||||
|
@ -52,7 +52,7 @@ stdenv.mkDerivation {
|
||||
${if stdenv.system == "x86_64-linux" then ''
|
||||
sed -i "s,TV_LD64_PATH=.*,TV_LD64_PATH=$(cat ${ld64})," script/tvw_config
|
||||
'' else ''
|
||||
sed -i ",TV_LD64_PATH=.*,d" script/tvw_config
|
||||
sed -i "/TV_LD64_PATH=.*/d" script/tvw_config
|
||||
''}
|
||||
|
||||
sed -i "s,/opt/teamviewer,$out/share/teamviewer,g" desktop/teamviewer-*.desktop
|
||||
|
@ -1,22 +1,32 @@
|
||||
{ stdenv, fetchdarcs, ocaml, findlib, cryptokit, yojson, lmdb, zlib }:
|
||||
{ stdenv, fetchdarcs, rustUnstable, openssl, libssh }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
with rustUnstable;
|
||||
|
||||
buildRustPackage rec {
|
||||
name = "pijul-${version}";
|
||||
version = "0.1";
|
||||
version = "0.2-6ab9ba";
|
||||
|
||||
src = fetchdarcs {
|
||||
url = "http://pijul.org/";
|
||||
rev = version;
|
||||
sha256 = "0r189xx900w4smq6nyy1wnrjf9sgqrqw5as0l7k6gq0ra36szzff";
|
||||
context = ./pijul.org.context;
|
||||
sha256 = "1cgkcr5wdkwj7s0rda90bfchbwmchgi60w5d637894w20hkplsr4";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib cryptokit yojson lmdb zlib ];
|
||||
sourceRoot = "fetchdarcs/pijul";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp pijul $out/bin/
|
||||
depsSha256 = "110bj2lava1xs75z6k34aip7zb7rcmnxk5hmiyi32i9hs0ddsdrz";
|
||||
|
||||
cargoUpdateHook = ''
|
||||
cp -r ../libpijul src/
|
||||
'';
|
||||
|
||||
setSourceRoot = ''
|
||||
chmod -R u+w "$sourceRoot"
|
||||
cp -r "$sourceRoot"/../libpijul "$sourceRoot"/src/
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl libssh ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://pijul.org/;
|
||||
description = "Fast DVCS based on a categorical theory of patches";
|
||||
|
92
pkgs/applications/version-management/pijul/pijul.org.context
Normal file
92
pkgs/applications/version-management/pijul/pijul.org.context
Normal file
@ -0,0 +1,92 @@
|
||||
|
||||
Context:
|
||||
|
||||
[+libpijul/Cargo.lock
|
||||
pe@pijul.org**20160212063509
|
||||
Ignore-this: e5a696b13850b36668a41aedb7bd1b74
|
||||
]
|
||||
|
||||
[+pijul/Cargo.lock
|
||||
pe@pijul.org**20160212063451
|
||||
Ignore-this: a621a502d1701cb63e6b5c8fd0afbde8
|
||||
]
|
||||
|
||||
[Error detection, gnupg messages
|
||||
pe@pijul.org**20160210101417
|
||||
Ignore-this: 3c517e122c1eca1df9520aed8fd3b0ea
|
||||
]
|
||||
|
||||
[Login command
|
||||
pe@pijul.org**20160210055826
|
||||
Ignore-this: 7be5618dc418554a82c5f8a68cc8f515
|
||||
]
|
||||
|
||||
[Extra functions for the nest
|
||||
pe@pijul.org**20160208205519
|
||||
Ignore-this: 39c8cbed5517b31bc846493e6ffefc76
|
||||
]
|
||||
|
||||
[Timestamp in RFC3339
|
||||
pe@pijul.org**20160208145551
|
||||
Ignore-this: dd114fe418052570572d73e443683d85
|
||||
]
|
||||
|
||||
[Combined external_hash and contents in libpijul (makes it easier to print patches)
|
||||
pe@pijul.org**20160208145450
|
||||
Ignore-this: 69f588e1bab551bffd719fa05ad7080a
|
||||
]
|
||||
|
||||
[disentangle output in libpijul
|
||||
florent.becker@ens-lyon.org**20160208094544
|
||||
Ignore-this: 2dc35255cf48d77eb0c4ba2dde6d4f98
|
||||
]
|
||||
|
||||
[Disentangle libpijul::Repository::local_diff
|
||||
florent.becker@ens-lyon.org**20160207104631
|
||||
Ignore-this: 65b119358afa95eb013e84c0d7a250d9
|
||||
]
|
||||
|
||||
[remove redundant import
|
||||
florent.becker@ens-lyon.org**20160207104613
|
||||
Ignore-this: e3f7873ec678f62f4129be61238c2c0d
|
||||
]
|
||||
|
||||
[Disentangle add_lines and delete_lines in diff
|
||||
florent.becker@ens-lyon.org**20160207102456
|
||||
Ignore-this: 5e89908adf7a519bbe2b2ab399cf0a2
|
||||
]
|
||||
|
||||
[Disentangle libpijul::rec_delete
|
||||
florent.becker@ens-lyon.org**20160206214730
|
||||
Ignore-this: fb6a70c298a38724665c3d6452577649
|
||||
]
|
||||
|
||||
[Make InternalKey type be an array rather than a reference
|
||||
florent.becker@ens-lyon.org**20160205195638
|
||||
Ignore-this: f9b5d15049358b2d8e93322d25a50e58
|
||||
]
|
||||
|
||||
[Ask ssh known_hosts, and new file format
|
||||
pe@pijul.org**20160207120834
|
||||
Ignore-this: f7a7f2ae672a3f6f40a2ac85139d6e10
|
||||
]
|
||||
|
||||
[Handling HTTP errors (when cloning from HTTP)
|
||||
pe@pijul.org**20160204182444
|
||||
Ignore-this: 1805ae8d3b8a4ca49da06e18dd37b151
|
||||
]
|
||||
|
||||
[Small debugging assertions
|
||||
pe@pijul.org**20160203143007
|
||||
Ignore-this: e3d3dddc72511166d606e1751b19411b
|
||||
]
|
||||
|
||||
[Two unused functions back (used in the nest)
|
||||
pe@pijul.org**20160202075743
|
||||
Ignore-this: 8c6904b122c8a78bfa0b9cc5416c943
|
||||
]
|
||||
|
||||
[TAG 0.2
|
||||
pe@pijul.org**20160202073939
|
||||
Ignore-this: 1e9d04d5ffe231ffaccaf9c4ccb684d3
|
||||
]
|
@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mpv-player/mpv/archive/v${meta.version}.tar.gz";
|
||||
sha256 = "0cqjwl0xyg0sv1jflipfkvqjg32y0kqfh4gc3lyhqgv0hgs3fa84";
|
||||
sha256 = "1p0b83048g66icpz5n66v3k4ldr1z0rmg5d2rr7kcbspm1xj2cbx";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
@ -125,7 +125,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
version = "0.14.0";
|
||||
version = "0.15.0";
|
||||
description = "A media player that supports many video formats (MPlayer and mplayer2 fork)";
|
||||
homepage = http://mpv.io;
|
||||
license = licenses.gpl2Plus;
|
||||
|
@ -75,7 +75,7 @@ in stdenv.mkDerivation (args // {
|
||||
(
|
||||
set -euo pipefail
|
||||
|
||||
cd ../deps/registry/src/*
|
||||
cd $NIX_BUILD_TOP/deps/registry/src/*
|
||||
|
||||
for script in $patchRegistryDeps/*; do
|
||||
# Run in a subshell so that directory changes and shell options don't
|
||||
|
@ -1,8 +1,9 @@
|
||||
{ fetchurl, stdenv, pkgconfig, intltool, perl, perlXMLParser, libxml2
|
||||
, glib, gtk3, pango, atk, gdk_pixbuf, shared_mime_info, itstool, gnome3
|
||||
, poppler, ghostscriptX, djvulibre, libspectre, libsecret , makeWrapper
|
||||
, librsvg, recentListSize ? null # 5 is not enough, allow passing a different number
|
||||
, gobjectIntrospection
|
||||
, librsvg, gobjectIntrospection
|
||||
, recentListSize ? null # 5 is not enough, allow passing a different number
|
||||
, supportXPS ? false # Open XML Paper Specification via libgxps
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -15,11 +16,12 @@ stdenv.mkDerivation rec {
|
||||
gnome3.libgnome_keyring gnome3.gsettings_desktop_schemas
|
||||
poppler ghostscriptX djvulibre libspectre
|
||||
makeWrapper libsecret librsvg gnome3.adwaita-icon-theme
|
||||
];
|
||||
] ++ stdenv.lib.optional supportXPS gnome3.libgxps;
|
||||
|
||||
configureFlags = [
|
||||
"--disable-nautilus" # Do not use nautilus
|
||||
"--enable-introspection"
|
||||
(if supportXPS then "--enable-xps" else "--disable-xps")
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
|
||||
|
@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1gi0b0x0354jyqc48vspk2hg2q1403cf2p9ibj847nzhkdrh9l9r";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib cairo libarchive freetype libjpeg libtiff acl openssl bzip2 attr];
|
||||
buildInputs = [ pkgconfig glib cairo freetype libjpeg libtiff acl openssl bzip2 attr];
|
||||
propagatedBuildInputs = [ libarchive ];
|
||||
|
||||
configureFlags = "--without-liblcms2";
|
||||
|
||||
|
@ -8,10 +8,10 @@ stdenv, fetchurl
|
||||
let
|
||||
s =
|
||||
rec {
|
||||
version = "1.4.4";
|
||||
versionSuffix = "-0";
|
||||
version = "1.6";
|
||||
versionSuffix = ".0-0";
|
||||
url = "mirror://sourceforge/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20${version}/lazarus-${version}${versionSuffix}.tar.gz";
|
||||
sha256 = "12w3xwqif96a65b0ygi4riqrp0122wsp0ykb1j7k8hjfyk91x91a";
|
||||
sha256 = "1a1w9yibi0rsr51bl7csnq6mr59x0934850kiabs80nr3sz05knb";
|
||||
name = "lazarus-${version}";
|
||||
};
|
||||
buildInputs = [
|
||||
@ -33,7 +33,7 @@ stdenv.mkDerivation {
|
||||
"bigide"
|
||||
];
|
||||
preBuild = ''
|
||||
export makeFlags="$makeFlags LAZARUS_INSTALL_DIR=$out/lazarus/ INSTALL_PREFIX=$out/"
|
||||
export makeFlags="$makeFlags LAZARUS_INSTALL_DIR=$out/share/lazarus/ INSTALL_PREFIX=$out/"
|
||||
export NIX_LDFLAGS="$NIX_LDFLAGS -L${stdenv.cc.cc}/lib -lXi -lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lc -lXext -lpango-1.0 -latk-1.0 -lgdk_pixbuf-2.0 -lcairo -lgcc_s"
|
||||
export LCL_PLATFORM=gtk2
|
||||
mkdir -p $out/share "$out/lazarus"
|
||||
|
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;
|
||||
};
|
||||
}
|
@ -2,10 +2,10 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "icmake-${version}";
|
||||
version = "8.00.05";
|
||||
version = "8.01.00";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
sha256 = "06bfz9awi2vh2mzikw4sp7wqrp0nlcg89b9br43awz2801k15hpf";
|
||||
sha256 = "1vgjywbc4w1agkakfndr2qf0z0ncxisihdv8sz9ipry9f170np39";
|
||||
rev = version;
|
||||
repo = "icmake";
|
||||
owner = "fbb-git";
|
||||
|
@ -3,11 +3,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "voxelands-${version}";
|
||||
version = "1506.00";
|
||||
version = "1512.00";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://voxelands.com/downloads/${name}-src.tar.bz2";
|
||||
sha256 = "0j82zidxv2rzx7fmw5z27nfldqkixbrs1f6l3fs433xr3d05406y";
|
||||
url = "http://voxelands.com/downloads/${name}-src.tar.bz2";
|
||||
sha256 = "0bims0y0nyviv2f2nxfj37s3258cjbfp9xd97najz0yylnk3qdfw";
|
||||
};
|
||||
|
||||
cmakeFlags = [
|
||||
|
@ -13,11 +13,14 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ openssl libuuid ];
|
||||
|
||||
buildFlags = "mosquitto";
|
||||
makeFlags = [
|
||||
"DESTDIR=$(out)"
|
||||
"PREFIX="
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp src/mosquitto $out/bin/
|
||||
preBuild = ''
|
||||
substituteInPlace config.mk \
|
||||
--replace "/usr/local" ""
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
31
pkgs/tools/backup/ugarit-manifest-maker/default.nix
Normal file
31
pkgs/tools/backup/ugarit-manifest-maker/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ pkgs, stdenv, eggDerivation, fetchegg }:
|
||||
let
|
||||
eggs = import ./eggs.nix { inherit pkgs stdenv eggDerivation fetchegg; };
|
||||
in with pkgs; eggDerivation rec {
|
||||
pname = "ugarit-manifest-maker";
|
||||
version = "0.1";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchegg {
|
||||
inherit version;
|
||||
name = pname;
|
||||
sha256 = "1jv8lhn4s5a3qphqd3zfwl1py0m5cmqj1h55ys0935m5f422547q";
|
||||
};
|
||||
|
||||
buildInputs = with eggs; [
|
||||
matchable
|
||||
srfi-37
|
||||
fnmatch
|
||||
miscmacros
|
||||
ugarit
|
||||
numbers
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.kitten-technologies.co.uk/project/ugarit-manifest-maker/;
|
||||
description = "A tool for generating import manifests for Ugarit";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.ebzzry ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
431
pkgs/tools/backup/ugarit-manifest-maker/eggs.nix
Normal file
431
pkgs/tools/backup/ugarit-manifest-maker/eggs.nix
Normal file
@ -0,0 +1,431 @@
|
||||
{ pkgs, stdenv, eggDerivation, fetchegg }:
|
||||
rec {
|
||||
blob-utils = eggDerivation {
|
||||
name = "blob-utils-1.0.3";
|
||||
|
||||
src = fetchegg {
|
||||
name = "blob-utils";
|
||||
version = "1.0.3";
|
||||
sha256 = "17vdn02fnxnjx5ixgqimln93lqvzyq4y9w02fw7xnbdcjzqm0xml";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
string-utils
|
||||
];
|
||||
};
|
||||
|
||||
check-errors = eggDerivation {
|
||||
name = "check-errors-1.13.0";
|
||||
|
||||
src = fetchegg {
|
||||
name = "check-errors";
|
||||
version = "1.13.0";
|
||||
sha256 = "12a0sn82n98jybh72zb39fdddmr5k4785xglxb16750fhy8rmjwi";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
];
|
||||
};
|
||||
|
||||
crypto-tools = eggDerivation {
|
||||
name = "crypto-tools-1.3";
|
||||
|
||||
src = fetchegg {
|
||||
name = "crypto-tools";
|
||||
version = "1.3";
|
||||
sha256 = "0442wly63zis19vh8xc9nhxgp9sabaccxylpzmchd5f1d48iag65";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
fnmatch = eggDerivation {
|
||||
name = "fnmatch-1.0.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "fnmatch";
|
||||
version = "1.0.1";
|
||||
sha256 = "1m3jmyhkyqmjr7v628g6w5n3cqihcfnryrxn91k4597q7vjhikqr";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
foreigners = eggDerivation {
|
||||
name = "foreigners-1.4.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "foreigners";
|
||||
version = "1.4.1";
|
||||
sha256 = "07nvyadhkd52q0kkvch1a5d7ivpmrhmyg295s4mxb1nw4wz46gfz";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
matchable
|
||||
];
|
||||
};
|
||||
|
||||
lookup-table = eggDerivation {
|
||||
name = "lookup-table-1.13.5";
|
||||
|
||||
src = fetchegg {
|
||||
name = "lookup-table";
|
||||
version = "1.13.5";
|
||||
sha256 = "1nzly6rhynawlvzlyilk8z8cxz57cf9n5iv20glkhh28pz2izmrb";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
check-errors
|
||||
miscmacros
|
||||
record-variants
|
||||
synch
|
||||
];
|
||||
};
|
||||
|
||||
lru-cache = eggDerivation {
|
||||
name = "lru-cache-0.5.3";
|
||||
|
||||
src = fetchegg {
|
||||
name = "lru-cache";
|
||||
version = "0.5.3";
|
||||
sha256 = "0z6g3106c4j21v968hfzy9nnbfq2d83y0nyd20aifpq4g55c0d40";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
record-variants
|
||||
];
|
||||
};
|
||||
|
||||
matchable = eggDerivation {
|
||||
name = "matchable-3.3";
|
||||
|
||||
src = fetchegg {
|
||||
name = "matchable";
|
||||
version = "3.3";
|
||||
sha256 = "07y3lpzgm4djiwi9y2adc796f9kwkmdr28fkfkw65syahdax8990";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
message-digest = eggDerivation {
|
||||
name = "message-digest-3.1.0";
|
||||
|
||||
src = fetchegg {
|
||||
name = "message-digest";
|
||||
version = "3.1.0";
|
||||
sha256 = "1w6bax19dwgih78vcimiws0rja7qsd8hmbm6qqg2hf9cw3vab21s";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
miscmacros
|
||||
check-errors
|
||||
variable-item
|
||||
blob-utils
|
||||
string-utils
|
||||
];
|
||||
};
|
||||
|
||||
miscmacros = eggDerivation {
|
||||
name = "miscmacros-2.96";
|
||||
|
||||
src = fetchegg {
|
||||
name = "miscmacros";
|
||||
version = "2.96";
|
||||
sha256 = "1ajdgjrni10i2hmhcp4rawnxajjxry3kmq1krdmah4sf0kjrgajc";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
numbers = eggDerivation {
|
||||
name = "numbers-4.4";
|
||||
|
||||
src = fetchegg {
|
||||
name = "numbers";
|
||||
version = "4.4";
|
||||
sha256 = "0bg5zs6jcr9arj4a7r2xqxf2n17bx93640jaivgchbdj1gixranm";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
parley = eggDerivation {
|
||||
name = "parley-0.9.2";
|
||||
|
||||
src = fetchegg {
|
||||
name = "parley";
|
||||
version = "0.9.2";
|
||||
sha256 = "1vsbx4dk1240gzq02slzmavd1jrq04qj7ssnvg15h8xh81xwhbbz";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
stty
|
||||
srfi-71
|
||||
miscmacros
|
||||
];
|
||||
};
|
||||
|
||||
pathname-expand = eggDerivation {
|
||||
name = "pathname-expand-0.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "pathname-expand";
|
||||
version = "0.1";
|
||||
sha256 = "14llya7l04z49xpi3iylk8aglrw968vy304ymavhhqlyzmzwkx3g";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
posix-extras = eggDerivation {
|
||||
name = "posix-extras-0.1.6";
|
||||
|
||||
src = fetchegg {
|
||||
name = "posix-extras";
|
||||
version = "0.1.6";
|
||||
sha256 = "0gnmhn2l0161ham7f8i0lx1ay94ap8l8l7ga4nw9qs86lk024abi";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
record-variants = eggDerivation {
|
||||
name = "record-variants-0.5.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "record-variants";
|
||||
version = "0.5.1";
|
||||
sha256 = "15wgysxkm8m4hx9nhhw9akchzipdnqc7yj3qd3zn0z7sxg4sld1h";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
regex = eggDerivation {
|
||||
name = "regex-1.0";
|
||||
|
||||
src = fetchegg {
|
||||
name = "regex";
|
||||
version = "1.0";
|
||||
sha256 = "1z9bh7xvab6h5cdlsz8jk02pv5py1i6ryqarbcs3wdgkkjgmmkif";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
setup-helper = eggDerivation {
|
||||
name = "setup-helper-1.5.5";
|
||||
|
||||
src = fetchegg {
|
||||
name = "setup-helper";
|
||||
version = "1.5.5";
|
||||
sha256 = "1lpplp8f2wyc486dd98gs4wl1kkhh1cs6vdqkxrdk7f92ikmwbx3";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
sql-de-lite = eggDerivation {
|
||||
name = "sql-de-lite-0.6.6";
|
||||
|
||||
src = fetchegg {
|
||||
name = "sql-de-lite";
|
||||
version = "0.6.6";
|
||||
sha256 = "1mh3hpsibq2gxcpjaycqa4ckznj268xpfzsa6pn0i6iac6my3qra";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
lru-cache
|
||||
foreigners
|
||||
];
|
||||
};
|
||||
|
||||
srfi-37 = eggDerivation {
|
||||
name = "srfi-37-1.3.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "srfi-37";
|
||||
version = "1.3.1";
|
||||
sha256 = "1a2zdkdzrv15fw9dfdy8067fsgh4kr8ppffm8mc3cmlczrrd58cb";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
srfi-71 = eggDerivation {
|
||||
name = "srfi-71-1.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "srfi-71";
|
||||
version = "1.1";
|
||||
sha256 = "01mlaxw2lfczykmx69xki2s0f4ywlg794rl4kz07plvzn0s3fbqq";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
ssql = eggDerivation {
|
||||
name = "ssql-0.2.2";
|
||||
|
||||
src = fetchegg {
|
||||
name = "ssql";
|
||||
version = "0.2.2";
|
||||
sha256 = "10557ymy0fgvqqazsg2jsbqvng0b91jqcjfgsxkrq8xs3klyd5mf";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
matchable
|
||||
];
|
||||
};
|
||||
|
||||
string-utils = eggDerivation {
|
||||
name = "string-utils-1.2.4";
|
||||
|
||||
src = fetchegg {
|
||||
name = "string-utils";
|
||||
version = "1.2.4";
|
||||
sha256 = "07alvghg0dahilrm4jg44bndl0x69sv1zbna9l20cbdvi35i0jp1";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
miscmacros
|
||||
lookup-table
|
||||
check-errors
|
||||
];
|
||||
};
|
||||
|
||||
stty = eggDerivation {
|
||||
name = "stty-0.2.6";
|
||||
|
||||
src = fetchegg {
|
||||
name = "stty";
|
||||
version = "0.2.6";
|
||||
sha256 = "09jmjpdsd3yg6d0f0imcihmn49i28x09lgl60i2dllffs25k22s4";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
foreigners
|
||||
];
|
||||
};
|
||||
|
||||
synch = eggDerivation {
|
||||
name = "synch-2.1.2";
|
||||
|
||||
src = fetchegg {
|
||||
name = "synch";
|
||||
version = "2.1.2";
|
||||
sha256 = "1m9mnbq0m5jsxmd1a3rqpwpxj0l1b7vn1fknvxycc047pmlcyl00";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
check-errors
|
||||
];
|
||||
};
|
||||
|
||||
tiger-hash = eggDerivation {
|
||||
name = "tiger-hash-3.1.0";
|
||||
|
||||
src = fetchegg {
|
||||
name = "tiger-hash";
|
||||
version = "3.1.0";
|
||||
sha256 = "0j9dsbjp9cw0y4w4srg0qwgh53jw2v3mx4y4h040ds0fkxlzzknx";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
message-digest
|
||||
];
|
||||
};
|
||||
|
||||
ugarit = eggDerivation {
|
||||
name = "ugarit-2.0";
|
||||
|
||||
src = fetchegg {
|
||||
name = "ugarit";
|
||||
version = "2.0";
|
||||
sha256 = "1l5zkr6b8l5dw9p5mimbva0ncqw1sbvp3d4cywm1hqx2m03a0f1n";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
miscmacros
|
||||
sql-de-lite
|
||||
crypto-tools
|
||||
srfi-37
|
||||
stty
|
||||
matchable
|
||||
regex
|
||||
tiger-hash
|
||||
message-digest
|
||||
posix-extras
|
||||
parley
|
||||
ssql
|
||||
pathname-expand
|
||||
];
|
||||
};
|
||||
|
||||
ugarit-manifest-maker = eggDerivation {
|
||||
name = "ugarit-manifest-maker-0.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "ugarit-manifest-maker";
|
||||
version = "0.1";
|
||||
sha256 = "1jv8lhn4s5a3qphqd3zfwl1py0m5cmqj1h55ys0935m5f422547q";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
matchable
|
||||
srfi-37
|
||||
fnmatch
|
||||
miscmacros
|
||||
ugarit
|
||||
numbers
|
||||
];
|
||||
};
|
||||
|
||||
variable-item = eggDerivation {
|
||||
name = "variable-item-1.3.1";
|
||||
|
||||
src = fetchegg {
|
||||
name = "variable-item";
|
||||
version = "1.3.1";
|
||||
sha256 = "19b3mhb8kr892sz9yyzq79l0vv28dgilw9cf415kj6aq16yp4d5n";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
setup-helper
|
||||
check-errors
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -1,12 +0,0 @@
|
||||
diff -u ddclient-3.8.1/ddclient ddclient-3.8.1.patched/ddclient
|
||||
--- ddclient-3.8.1/ddclient 2011-07-11 23:04:21.000000000 +0200
|
||||
+++ ddclient-3.8.1.patched/ddclient 2012-11-08 11:52:31.930647236 +0100
|
||||
@@ -574,7 +574,7 @@
|
||||
"usage: ${program} [options]",
|
||||
"options are:",
|
||||
[ "daemon", "=s", "-daemon delay : run as a daemon, specify delay as an interval." ],
|
||||
-+ [ "foreground", "!", "-foreground : do not fork" ],
|
||||
+ [ "foreground", "!", "-foreground : do not fork" ],
|
||||
[ "proxy", "=s", "-proxy host : use 'host' as the HTTP proxy" ],
|
||||
[ "server", "=s", "-server host : update DNS information on 'host'" ],
|
||||
[ "protocol", "=s", "-protocol type : update protocol used" ],
|
@ -1,24 +1,25 @@
|
||||
{buildPerlPackage, fetchurl, perlPackages, iproute}:
|
||||
{ stdenv, buildPerlPackage, fetchurl, perlPackages, iproute }:
|
||||
|
||||
buildPerlPackage {
|
||||
name = "ddclient-3.8.2";
|
||||
buildPerlPackage rec {
|
||||
name = "ddclient-${version}";
|
||||
version = "3.8.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/ddclient/ddclient-3.8.2.tar.gz ;
|
||||
sha256 = "17mcdqxcwa6c05m8xhxi4r37j4qvbp3wgbpvzqgmrmgwava5wcrw";
|
||||
url = "mirror://sourceforge/ddclient/${name}.tar.gz";
|
||||
sha256 = "1j8zdn7fy7i0bjk3jf0hxnbnshc2yf054vxq64imxdpfd7n5zgfy";
|
||||
};
|
||||
|
||||
buildInputs = [ perlPackages.IOSocketSSL perlPackages.DigestSHA1 ];
|
||||
|
||||
patches = [ ./ddclient-foreground.patch ./ddclient-line-buffer-stdout.patch ];
|
||||
patches = [ ./ddclient-line-buffer-stdout.patch ];
|
||||
|
||||
# Use iproute2 instead of ifconfig
|
||||
preConfigure = ''
|
||||
preConfigure = ''
|
||||
touch Makefile.PL
|
||||
substituteInPlace ddclient --replace 'in the output of ifconfig' 'in the output of ip addr show'
|
||||
substituteInPlace ddclient --replace 'ifconfig -a' '${iproute}/sbin/ip addr show'
|
||||
substituteInPlace ddclient --replace 'ifconfig $arg' '${iproute}/sbin/ip addr show $arg'
|
||||
'';
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
@ -26,4 +27,10 @@ buildPerlPackage {
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://sourceforge.net/p/ddclient/wiki/Home/;
|
||||
description = "Client for updating dynamic DNS service entries";
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
|
@ -3,12 +3,12 @@
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1.0";
|
||||
version = "1.1.4";
|
||||
name = "zerotierone";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
|
||||
sha256 = "2d7ff178bd7fd284ebb7011d8a91bde51befda60f100eb5429a2dcb6626cf676";
|
||||
sha256 = "10aw0dlkmprdvph3aqkqximxqkryf0l4jcnv2bbm7f1qvclqihva";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
@ -3638,6 +3638,8 @@ let
|
||||
|
||||
ugarit = callPackage ../tools/backup/ugarit { };
|
||||
|
||||
ugarit-manifest-maker = callPackage ../tools/backup/ugarit-manifest-maker { };
|
||||
|
||||
unarj = callPackage ../tools/archivers/unarj { };
|
||||
|
||||
unshield = callPackage ../tools/archivers/unshield { };
|
||||
@ -7301,6 +7303,8 @@ let
|
||||
|
||||
libfakekey = callPackage ../development/libraries/libfakekey { };
|
||||
|
||||
libfilezilla = callPackage ../development/libraries/libfilezilla { };
|
||||
|
||||
libfm = callPackage ../development/libraries/libfm { };
|
||||
libfm-extra = callPackage ../development/libraries/libfm {
|
||||
extraOnly = true;
|
||||
@ -12861,11 +12865,11 @@ let
|
||||
|
||||
pcmanfm = callPackage ../applications/misc/pcmanfm { };
|
||||
|
||||
pcmanx-gtk2 = callPackage ../applications/misc/pcmanx-gtk2 { };
|
||||
|
||||
pig = callPackage ../applications/networking/cluster/pig { };
|
||||
|
||||
pijul = callPackage ../applications/version-management/pijul {
|
||||
inherit (ocamlPackages) findlib cryptokit yojson;
|
||||
};
|
||||
pijul = callPackage ../applications/version-management/pijul { };
|
||||
|
||||
playonlinux = callPackage ../applications/misc/playonlinux {
|
||||
stdenv = stdenv_32bit;
|
||||
|
@ -8149,10 +8149,10 @@ let self = _self // overrides; _self = with self; {
|
||||
};
|
||||
};
|
||||
|
||||
MooseXRoleWithOverloading = buildPerlPackage {
|
||||
name = "MooseX-Role-WithOverloading-0.13";
|
||||
MooseXRoleWithOverloading = buildPerlPackage rec {
|
||||
name = "MooseX-Role-WithOverloading-0.17";
|
||||
src = fetchurl {
|
||||
url = mirror://cpan/authors/id/E/ET/ETHER/MooseX-Role-WithOverloading-0.13.tar.gz;
|
||||
url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz";
|
||||
sha256 = "01mqpvbz7yw993918hgp72vl22i6mgicpq5b3zrrsp6vl8sqj2sw";
|
||||
};
|
||||
buildInputs = [ TestCheckDeps TestNoWarnings ModuleMetadata];
|
||||
@ -9739,11 +9739,11 @@ let self = _self // overrides; _self = with self; {
|
||||
};
|
||||
};
|
||||
|
||||
podlators = buildPerlPackage {
|
||||
name = "podlators-2.5.3";
|
||||
podlators = buildPerlPackage rec {
|
||||
name = "podlators-4.06";
|
||||
src = fetchurl {
|
||||
url = mirror://cpan/authors/id/R/RR/RRA/podlators-2.5.3.tar.gz;
|
||||
sha256 = "c80d6d65a8694720deff1c6b2067d7564727db713b6d6b536afbad70299647d1";
|
||||
url = "mirror://cpan/authors/id/R/RR/RRA/${name}.tar.gz";
|
||||
sha256 = "0fsb1k88fsqwgmk5fkcz57jf27g6ip4ncikawslm596d1si2h48a";
|
||||
};
|
||||
meta = {
|
||||
description = "Convert POD data to various other formats";
|
||||
|
@ -3906,6 +3906,26 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
pycontracts = buildPythonPackage rec {
|
||||
version = "1.7.9";
|
||||
name = "PyContracts-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/P/PyContracts/${name}.tar.gz";
|
||||
sha256 = "0rdc9pz08885vqkazjc3lyrrghmf3jzxnlsgpn8akl808x1qrfqf";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ nose ];
|
||||
|
||||
propagatedBuildInputs = with self; [ pyparsing decorator six ];
|
||||
|
||||
meta = {
|
||||
description = "Allows to declare constraints on function parameters and return values.";
|
||||
homepage = https://pypi.python.org/pypi/PyContracts;
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
};
|
||||
|
||||
pycparser = buildPythonPackage rec {
|
||||
name = "pycparser-${version}";
|
||||
version = "2.14";
|
||||
@ -9092,6 +9112,22 @@ in modules // {
|
||||
};
|
||||
});
|
||||
|
||||
forbiddenfruit = buildPythonPackage rec {
|
||||
version = "0.1.0";
|
||||
name = "forbiddenfruit-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url= "https://pypi.python.org/packages/source/f/forbiddenfruit/${name}.tar.gz";
|
||||
sha256 = "0xra2kw6m8ag29ifwmhi5zqksh4cr0yy1waqd488rm59kcr3zl79";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Patch python built-in objects";
|
||||
homepage = https://pypi.python.org/pypi/forbiddenfruit;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
fs = buildPythonPackage rec {
|
||||
name = "fs-0.5.4";
|
||||
|
||||
@ -9638,6 +9674,32 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
gssapi = buildPythonPackage rec {
|
||||
version = "1.1.4";
|
||||
name = "gssapi-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/g/gssapi/${name}.tar.gz";
|
||||
sha256 = "0mdl7m6h57n0zkfmm6fqz0hldfxrb2d7d48k2lhc8hqbr3962c7x";
|
||||
};
|
||||
|
||||
GSSAPI_SUPPORT_DETECT = "false";
|
||||
LD_LIBRARY_PATH="${pkgs.krb5Full}/lib";
|
||||
|
||||
buildInputs = [ pkgs.gss pkgs.krb5Full pkgs.which
|
||||
self.nose self.shouldbe ];
|
||||
|
||||
propagatedBuildInputs = with self; [ decorator enum34 six ];
|
||||
|
||||
doCheck = false; # No such file or directory: '/usr/sbin/kadmin.local'
|
||||
|
||||
meta = {
|
||||
homepage = https://pypi.python.org/pypi/gssapi;
|
||||
description = "Python GSSAPI Wrapper";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
gyp = buildPythonPackage rec {
|
||||
name = "gyp-${version}";
|
||||
version = "2015-06-11";
|
||||
@ -16996,6 +17058,26 @@ in modules // {
|
||||
propagatedBuildInputs = with self; [pkgs.openldap pkgs.cyrus_sasl pkgs.openssl];
|
||||
};
|
||||
|
||||
ldap3 = buildPythonPackage rec {
|
||||
version = "1.0.4";
|
||||
name = "ldap3-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/l/ldap3/${name}.tar.gz";
|
||||
sha256 = "0j4qqj9vq022hy7wfqn8s0j4vm2g6paabbzas1vbyspawvcfai98";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ gssapi ];
|
||||
|
||||
propagatedBuildInputs = with self; [ pyasn1 ];
|
||||
|
||||
meta = {
|
||||
homepage = https://pypi.python.org/pypi/ldap3;
|
||||
description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library";
|
||||
license = licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
|
||||
ptest = buildPythonPackage rec {
|
||||
name = pname + "-" + version;
|
||||
pname = "ptest";
|
||||
@ -19003,6 +19085,27 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
shouldbe = buildPythonPackage rec {
|
||||
version = "0.1.0";
|
||||
name = "shouldbe-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://pypi.python.org/packages/source/s/shouldbe/${name}.tar.gz";
|
||||
sha256 = "07pchxpv1xvjbck0xy44k3a1jrvklg0wbyccn14w0i7d135d4174";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ nose ];
|
||||
|
||||
propagatedBuildInputs = with self; [ forbiddenfruit ];
|
||||
|
||||
doCheck = false; # Segmentation fault on py 3.5
|
||||
|
||||
meta = {
|
||||
description = "Python Assertion Helpers inspired by Shouldly";
|
||||
homepage = https://pypi.python.org/pypi/shouldbe/;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
simplejson = buildPythonPackage (rec {
|
||||
name = "simplejson-3.8.1";
|
||||
|
Loading…
Reference in New Issue
Block a user