pkgs/kat-ckb: Workaround for ckb-next update

This commit is contained in:
kat witch 2021-04-23 00:17:24 +01:00
parent 5e3525b2c3
commit 019ea08fe0
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
4 changed files with 65 additions and 1 deletions

View file

@ -30,6 +30,26 @@ let
screenstub = unstable.callPackage ./screenstub { };
kat-ckb = super.ckb-next.overrideAttrs (old: rec {
version = "0.4.4";
src = self.fetchFromGitHub {
owner = "ckb-next";
repo = "ckb-next";
rev = "v${version}";
sha256 = "1fgvh2hsrm8vqbqq9g45skhyyrhhka4d8ngmyldkldak1fgmrvb7";
};
buildInputs = old.buildInputs ++ [ self.xorg.libXdmcp self.qt5.qttools self.libsForQt5.qt5.qtx11extras self.libsForQt5.libdbusmenu ];
patches = [
./kat-ckb/install-dirs.patch
(self.substituteAll {
name = "ckb-next-modprobe.patch";
src = ./kat-ckb/modprobe.patch;
kmod = self.kmod;
})
];
});
kat-glauca-dns = unstable.callPackage ./kat-glauca-dns { inherit sources; };
kat-website = super.callPackage ./kat-website { };