diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-14T11·56+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-14T11·56+0000 |
commit | b4f835e21ccc4f166956591a8b5658fdcb96f3ee (patch) | |
tree | 4e7799b9815e1f0996336c54bd737842136f1f6c | |
parent | 0a8aa95c73f80793b13e349f92e212a89232fe22 (diff) |
chore(infra/nixos): Remove deprecated local packages r/135
-rw-r--r-- | infra/nixos/pkgs/pulseaudio-ctl.nix | 26 | ||||
-rw-r--r-- | infra/nixos/pkgs/wallpapers.nix | 22 |
2 files changed, 0 insertions, 48 deletions
diff --git a/infra/nixos/pkgs/pulseaudio-ctl.nix b/infra/nixos/pkgs/pulseaudio-ctl.nix deleted file mode 100644 index 9651ea097f7b..000000000000 --- a/infra/nixos/pkgs/pulseaudio-ctl.nix +++ /dev/null @@ -1,26 +0,0 @@ -with import <nixpkgs> {}; - -stdenv.mkDerivation rec { - name = "pulseaudio-ctl-${version}"; - version = "v1.66"; - - src = fetchzip { - url = "https://github.com/graysky2/pulseaudio-ctl/archive/${version}.tar.gz"; - sha256 = "19a24w7y19551ar41q848w7r1imqkl9cpff4dpb7yry7qp1yjg0y"; - }; - - buildFlags = ''PREFIX=$(out)''; - - # Force Nix to detect the runtime dependency on 'bc' - preInstall = '' - sed -i 's|bc)|${bc}/bin/bc)|g' common/pulseaudio-ctl - ''; - - installFlags = ''PREFIX=$(out)''; - - meta = with stdenv.lib; { - description = "Control pulseaudio volume from the shell or mapped to keyboard shortcuts"; - homepage = "https://github.com/graysky2/pulseaudio-ctl"; - license = licenses.mit; - }; -} diff --git a/infra/nixos/pkgs/wallpapers.nix b/infra/nixos/pkgs/wallpapers.nix deleted file mode 100644 index 3a26a54fb709..000000000000 --- a/infra/nixos/pkgs/wallpapers.nix +++ /dev/null @@ -1,22 +0,0 @@ -# Fetch my wallpapers from git -with import <nixpkgs> {}; - -stdenv.mkDerivation { - name = "tazjins-wallpapers-1"; - - src = fetchgit { - url = "https://git.tazj.in/tazjin/wallpapers.git"; - rev = "3bce73b605ba5f848cb4e7cc33058a2be3952c68"; - sha256 = "1gjlazag7x005sf2bd6a7dw5p9ry5vjgzmvycsyiw3pv9b1gzc0j"; - }; - - installPhase = '' - mkdir -p $out/share/wallpapers - cp -r $src/* $out/share/wallpapers - ''; - - meta = with stdenv.lib; { - description = "tazjin's wallpaper collection"; - platforms = platforms.all; - }; -} |