Skip to content

Commit 81dad6e

Browse files
Replace xlibs with xorg
1 parent 6d6fd08 commit 81dad6e

File tree

5 files changed

+13
-72
lines changed

5 files changed

+13
-72
lines changed

pkgs/instantLock/default.nix~

Lines changed: 0 additions & 63 deletions
This file was deleted.

pkgs/instantLogo/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
, stdenv
33
, fetchFromGitHub
44
, gnumake
5-
, xlibs
65
}:
76
stdenv.mkDerivation {
87

pkgs/instantMenu/default.nix

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
, stdenv
33
, fetchFromGitHub
44
, gnumake
5-
, xlibs
65
, instantUtils
6+
, libX11
7+
, libXft
8+
, libXinerama
79
}:
8-
stdenv.mkDerivation {
910

11+
stdenv.mkDerivation {
1012
pname = "instantMenu";
1113
version = "unstable";
1214

@@ -19,7 +21,7 @@ stdenv.mkDerivation {
1921
};
2022

2123
nativeBuildInputs = [ gnumake ];
22-
buildInputs = with xlibs; map lib.getDev [ libX11 libXft libXinerama ];
24+
buildInputs = [ libX11 libXft libXinerama ];
2325
propagatedBuildInputs = [ instantUtils ];
2426

2527
postPatch = ''

pkgs/instantWm/default.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
, stdenv
33
, fetchFromGitHub
44
, gnumake
5-
, xlibs
65
, pavucontrol
76
, rofi
87
, rxvt_unicode
@@ -12,6 +11,9 @@
1211
, instantAssist
1312
, instantUtils
1413
, instantDotfiles
14+
, libX11
15+
, libXft
16+
, libXinerama
1517
, wmconfig ? null
1618
, extraPatches ? []
1719
, defaultTerminal ? st
@@ -33,7 +35,6 @@ stdenv.mkDerivation {
3335
version = "unstable";
3436

3537
src = fetchFromGitHub gitrev;
36-
#src = ../../src/instantwm;
3738

3839
patches = [ ] ++ extraPatches;
3940

@@ -52,7 +53,7 @@ stdenv.mkDerivation {
5253
'';
5354

5455
nativeBuildInputs = [ gnumake ];
55-
buildInputs = with xlibs; map lib.getDev [ libX11 libXft libXinerama ];
56+
buildInputs = [ libX11 libXft libXinerama ];
5657
propagatedBuildInputs = [
5758
cantarell-fonts
5859
#joypixels

pkgs/islide/default.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
, stdenv
33
, fetchFromGitHub
44
, gnumake
5-
, xlibs
65
, instantAssist
6+
, libX11
7+
, libXft
8+
, libXinerama
79
}:
810
stdenv.mkDerivation {
911

@@ -26,7 +28,7 @@ stdenv.mkDerivation {
2628
'';
2729

2830
nativeBuildInputs = [ gnumake ];
29-
buildInputs = with xlibs; map lib.getDev [ libX11 libXft libXinerama ];
31+
buildInputs = [ libX11 libXft libXinerama ];
3032

3133
propagatedBuildInputs = [ instantAssist ];
3234

0 commit comments

Comments
 (0)