diff options
Diffstat (limited to 'users/glittershark/system/pkgs')
-rw-r--r-- | users/glittershark/system/pkgs/alsi/default.nix | 22 | ||||
-rw-r--r-- | users/glittershark/system/pkgs/argocd.nix | 1 | ||||
-rw-r--r-- | users/glittershark/system/pkgs/clang-tools.nix | 15 | ||||
-rw-r--r-- | users/glittershark/system/pkgs/clang-tools/default.nix | 24 | ||||
-rw-r--r-- | users/glittershark/system/pkgs/clang-tools/wrapper | 20 | ||||
-rw-r--r-- | users/glittershark/system/pkgs/notifymuch.nix | 55 |
6 files changed, 0 insertions, 137 deletions
diff --git a/users/glittershark/system/pkgs/alsi/default.nix b/users/glittershark/system/pkgs/alsi/default.nix deleted file mode 100644 index d4da8ff38ef7..000000000000 --- a/users/glittershark/system/pkgs/alsi/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ perl, stdenv, fetchFromGitHub }: -stdenv.mkDerivation { - name = "alsi"; - pname = "alsi"; - version = "0.4.8"; - - src = fetchFromGitHub { - owner = "trizen"; - repo = "alsi"; - rev = "fe2a925caad38d4cc7afe10d74ba60c5db09ee66"; - sha256 = "060xlalfclrda5f1h3svj4v2gr19mdrsc62vrg7hgii0f3lib7j5"; - }; - - buildInputs = [ - (perl.withPackages (ps: with ps; [ DataDump ])) - ]; - - installPhase = '' - mkdir -p $out/bin - cp alsi $out/bin/alsi - ''; -} diff --git a/users/glittershark/system/pkgs/argocd.nix b/users/glittershark/system/pkgs/argocd.nix deleted file mode 100644 index 5ab0e95d4462..000000000000 --- a/users/glittershark/system/pkgs/argocd.nix +++ /dev/null @@ -1 +0,0 @@ -(import <nixpkgs-unstable> {}).argocd diff --git a/users/glittershark/system/pkgs/clang-tools.nix b/users/glittershark/system/pkgs/clang-tools.nix deleted file mode 100644 index d13fbd44576a..000000000000 --- a/users/glittershark/system/pkgs/clang-tools.nix +++ /dev/null @@ -1,15 +0,0 @@ -with import <nixpkgs> {}; -runCommand "clang-tools" {} '' - mkdir -p $out/bin - for file in ${clang-tools}/bin/*; do - if [ $(basename "$file") != "clangd" ]; then - ln -s "$file" $out/bin - fi - done - - sed \ - -e "18iexport CPLUS_INCLUDE_PATH=${llvmPackages.libcxx}/include/c++/v1\\''${CPATH:+':'}\\''${CPATH}" \ - -e '/CPLUS_INCLUDE_PATH/d' \ - < ${clang-tools}/bin/clangd \ - > $out/bin/clangd -'' diff --git a/users/glittershark/system/pkgs/clang-tools/default.nix b/users/glittershark/system/pkgs/clang-tools/default.nix deleted file mode 100644 index 7c1009665eb6..000000000000 --- a/users/glittershark/system/pkgs/clang-tools/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ pkgs }: -with pkgs; - -runCommand "clang-tools" {} '' - mkdir -p $out/bin - export libc_includes="${stdenv.lib.getDev stdenv.cc.libc}/include" - export libcpp_includes="${llvmPackages.libcxx}/include/c++/v1" - - export clang=${llvmPackages.clang-unwrapped} - - echo $clang - - substituteAll ${./wrapper} $out/bin/clangd - chmod +x $out/bin/clangd - for tool in \ - clang-apply-replacements \ - clang-check \ - clang-format \ - clang-rename \ - clang-tidy - do - ln -s $out/bin/clangd $out/bin/$tool - done -'' diff --git a/users/glittershark/system/pkgs/clang-tools/wrapper b/users/glittershark/system/pkgs/clang-tools/wrapper deleted file mode 100644 index 949a4243e009..000000000000 --- a/users/glittershark/system/pkgs/clang-tools/wrapper +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -buildcpath() { - local path - while (( $# )); do - case $1 in - -isystem) - shift - path=$path${path:+':'}$1 - esac - shift - done - echo $path -} - -export CPATH=${CPATH}${CPATH:+':'}$(buildcpath ${NIX_CFLAGS_COMPILE}) -export CPATH=${CPATH}${CPATH:+':'}@libc_includes@ -export CPLUS_INCLUDE_PATH=@libcpp_includes@${CPATH:+':'}${CPATH} - -exec -a "$0" @clang@/bin/$(basename $0) "$@" diff --git a/users/glittershark/system/pkgs/notifymuch.nix b/users/glittershark/system/pkgs/notifymuch.nix deleted file mode 100644 index 065bcddd07c6..000000000000 --- a/users/glittershark/system/pkgs/notifymuch.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ stdenv -, buildPythonApplication -, isPy3k -, fetchFromGitHub -, notmuch -, pygobject3 -, gobject-introspection -, libnotify -, wrapGAppsHook -, gtk3 -}: - -buildPythonApplication rec { - pname = "notifymuch"; - version = "0.1"; - disabled = ! isPy3k; - - src = fetchFromGitHub { - owner = "kspi"; - repo = "notifymuch"; - rev = "9d4aaf54599282ce80643b38195ff501120807f0"; - sha256 = "1lssr7iv43mp5v6nzrfbqlfzx8jcc7m636wlfyhhnd8ydd39n6k4"; - }; - - propagatedBuildInputs = [ - notmuch - pygobject3 - libnotify - gtk3 - ]; - - nativeBuildInputs = [ - gobject-introspection - wrapGAppsHook - ]; - - dontWrapGApps = true; - - preFixup = '' - echo "wrapper args" - echo "''${makeWrapperArgs[@]}" - makeWrapperArgs+=("''${gappsWrapperArgs[@]}") - echo "wrapper args again" - echo "''${makeWrapperArgs[@]}" - ''; - - strictDeps = false; - - meta = with stdenv.lib; { - description = "Display desktop notifications for unread mail in a notmuch database"; - homepage = "https://github.com/kspi/notifymuch"; - maintainers = with maintainers; [ glittershark ]; - license = licenses.gpl3; - }; -} |