mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
i3lock-color: 2.9.1-c -> 2.10.1-1-c
This commit is contained in:
parent
ec0c4802ae
commit
c5f7ea6829
1 changed files with 12 additions and 9 deletions
|
@ -1,19 +1,22 @@
|
|||
{ stdenv, fetchFromGitHub, which, pkgconfig, libxcb, xcbutilkeysyms
|
||||
, xcbutilimage, pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxcb,
|
||||
xcbutilkeysyms , xcbutilimage, pam, libX11, libev, cairo, libxkbcommon,
|
||||
libxkbfile, libjpeg_turbo
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.9.1-c";
|
||||
version = "2.10.1-1-c";
|
||||
name = "i3lock-color-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chrjguill";
|
||||
owner = "PandorasFox";
|
||||
repo = "i3lock-color";
|
||||
rev = version;
|
||||
sha256 = "0qnw71qbppgp3ywj1k07av7wkl9syfb8j6izrkhj143q2ks4rkvl";
|
||||
rev = "01476c56333cccae80cdd3f125b0b9f3a0fe2cb3";
|
||||
sha256 = "06ca8496fkdkvh4ycg0b7kd3r1bjdqdwfimb51v4nj1lm87pdkdf";
|
||||
};
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ which libxcb xcbutilkeysyms xcbutilimage pam libX11
|
||||
libev cairo libxkbcommon libxkbfile ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ libxcb xcbutilkeysyms xcbutilimage pam libX11
|
||||
libev cairo libxkbcommon libxkbfile libjpeg_turbo ];
|
||||
|
||||
makeFlags = "all";
|
||||
preInstall = ''
|
||||
|
|
Loading…
Reference in a new issue