summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-10-27 11:07:19 +0200
committermakefu <github@syntax-fehler.de>2017-10-27 11:07:19 +0200
commit2e39f7b3d1805346e067bdc7236bd7dfe87381a2 (patch)
treea7c382e63f1a7360eb40c5a21374a908db86cde3 /makefu/5pkgs
parent346ba71f9c7e170583e8f3aa10575d1b260b2b3d (diff)
mv makefu/{slog,internetarchive} krebs/
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r--makefu/5pkgs/internetarchive/default.nix32
-rw-r--r--makefu/5pkgs/slog/default.nix20
2 files changed, 0 insertions, 52 deletions
diff --git a/makefu/5pkgs/internetarchive/default.nix b/makefu/5pkgs/internetarchive/default.nix
deleted file mode 100644
index b661aeee..00000000
--- a/makefu/5pkgs/internetarchive/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ pkgs, fetchFromGitHub, ... }:
-with pkgs.python3Packages;
-buildPythonPackage rec {
- pname = "internetarchive";
- version = "1.7.3";
- name = "${pname}-${version}";
- propagatedBuildInputs = [
- requests
- jsonpatch
- docopt
- clint
- six
- schema
- backports_csv
- ];
-
- # check only works when cloned from git repo
- doCheck = false;
- checkInputs = [
- pytest
- responses
- ];
-
- prePatch = ''
- sed -i "s/'schema.*'/'schema>=0.4.0'/" setup.py
- '';
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0x3saklabdx7qrr11h5bjfd75hfbih7pw5gvl2784zvvvrqrz45g";
- };
-}
diff --git a/makefu/5pkgs/slog/default.nix b/makefu/5pkgs/slog/default.nix
deleted file mode 100644
index a4dc33d2..00000000
--- a/makefu/5pkgs/slog/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ pkgs, stdenv, fetchFromGitHub }:
-
-## Posix shell logging, use with:
-# . $(command -v slog.sh)
-stdenv.mkDerivation rec {
- name = "slog-${version}";
- version = "2017-10-27";
-
- src = fetchFromGitHub {
- owner = "makefu";
- repo = "slog";
- rev = "50367c3";
- sha256 = "16wlh8xz430101lrxmgl2wangbbhvyj4pg8k5aibnh76sgj6x77r";
- };
-
- installPhase = ''
- mkdir -p $out/bin
- install -m755 slog.sh $out/bin
- '';
-}