chore: remove custom pop-shell package

since it is now in nixpkgs
This commit is contained in:
Felix Schröter 2021-12-02 23:52:05 +01:00
parent 77553e07db
commit 76a459488c
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
2 changed files with 0 additions and 39 deletions

View file

@ -78,9 +78,6 @@
deconz = self: super: {
deconz = self.qt5.callPackage ./pkgs/deconz { };
};
pop-shell = self: super: {
pop-shell = self.callPackage ./pkgs/pop-shell { };
};
obelisk = self: super: {
obelisk = (import obelisk { inherit (self) system; }).command;
};
@ -97,7 +94,6 @@
nur.overlay
overlays.neovim
overlays.deconz
overlays.pop-shell
overlays.photoprism
overlays.obelisk
];

View file

@ -1,35 +0,0 @@
{ lib, fetchFromGitHub, stdenv, glib, nodePackages, gjs }:
stdenv.mkDerivation rec {
pname = "pop-shell";
version = "2021-10-26";
src = fetchFromGitHub {
owner = "pop-os";
repo = "shell";
rev = "4b65ee865d01436ec75a239a0586a2fa6051b8c3";
sha256 = "DHmp3kzBgbyxRe0TjER/CAqyUmD9LeRqAFQ9apQDzfk=";
};
nativeBuildInputs = [ glib nodePackages.typescript gjs ];
buildInputs = [ gjs ];
preBuildHook = ''
find . -name '*.ts' -exec sed -i -E 's|^#!/usr/bin/gjs|#!/usr/bin/env gjs|' \{\} \;
find . -name '*.ts' -exec sed -i -E 's|\["gjs", path]|[path]|' \{\} \;
find . -name '*.ts' -exec sed -i -E 's|`gjs $\{path}`|path|' \{\} \;
'';
# the gschema doesn't seem to be installed properly (see dconf)
makeFlags = [
"INSTALLBASE=$(out)/share/gnome-shell/extensions"
"PLUGIN_BASE=$(out)/share/pop-shell/launcher"
"SCRIPTS_BASE=$(out)/share/pop-shell/scripts"
];
postInstall = ''
chmod +x $out/share/gnome-shell/extensions/pop-shell@system76.com/floating_exceptions/main.js
chmod +x $out/share/gnome-shell/extensions/pop-shell@system76.com/color_dialog/main.js
'';
}