about summary refs log tree commit diff
path: root/pkgs/tools/misc/pastebinit
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/pastebinit')
-rw-r--r--pkgs/tools/misc/pastebinit/default.nix55
-rw-r--r--pkgs/tools/misc/pastebinit/use-drv-etc.patch13
2 files changed, 0 insertions, 68 deletions
diff --git a/pkgs/tools/misc/pastebinit/default.nix b/pkgs/tools/misc/pastebinit/default.nix
deleted file mode 100644
index 27735d615573..000000000000
--- a/pkgs/tools/misc/pastebinit/default.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, python3
-, libxslt
-, docbook_xsl
-, installShellFiles
-, callPackage
-}:
-stdenv.mkDerivation rec {
-  version = "1.6.2";
-  pname = "pastebinit";
-
-  src = fetchFromGitHub {
-    owner = pname;
-    repo = pname;
-    rev = version;
-    hash = "sha256-vuAWkHlQM6QTWarThpSbY0qrxzej0GvLU0jT2JOS/qc=";
-  };
-
-  patches = [
-    ./use-drv-etc.patch
-  ];
-
-  nativeBuildInputs = [
-    libxslt
-    installShellFiles
-  ];
-
-  buildInputs = [
-    (python3.withPackages (p: [ p.distro ]))
-  ];
-
-  buildPhase = ''
-    xsltproc --nonet ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl pastebinit.xml
-  '';
-
-  installPhase = ''
-    mkdir -p $out/bin
-    mkdir -p $out/etc
-    cp -a pastebinit $out/bin
-    cp -a utils/* $out/bin
-    cp -a pastebin.d $out/etc
-    substituteInPlace $out/bin/pastebinit --subst-var-by "etc" "$out/etc"
-    installManPage pastebinit.1
-  '';
-
-  meta = with lib; {
-    homepage = "https://stgraber.org/category/pastebinit/";
-    description = "Software that lets you send anything you want directly to a pastebin from the command line";
-    maintainers = with maintainers; [ raboof samuel-martineau ];
-    license = licenses.gpl2Plus;
-    platforms = platforms.linux ++ lib.platforms.darwin;
-  };
-}
diff --git a/pkgs/tools/misc/pastebinit/use-drv-etc.patch b/pkgs/tools/misc/pastebinit/use-drv-etc.patch
deleted file mode 100644
index 6ccd7897ddf2..000000000000
--- a/pkgs/tools/misc/pastebinit/use-drv-etc.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/pastebinit b/pastebinit
-index 4e5f9ce..fe06bd3 100755
---- a/pastebinit
-+++ b/pastebinit
-@@ -91,7 +91,7 @@ try:
-         # Files found later override files found earlier.
-         pastebind = {}
-         confdirs = []
--        for confdir in ['/usr/share', '/usr/local/share'] \
-+        for confdir in ['@etc@', '/usr/share', '/usr/local/share'] \
-                 + list(reversed(os.environ.get('XDG_DATA_DIRS', '').split(':'))) \
-                 + list(reversed(os.environ.get('XDG_CONFIG_DIRS', '').split(':'))) \
-                 + ['/etc', '/usr/local/etc',