summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11/xwinmosaic
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-14 15:24:37 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 15:49:54 -0400
commited14223f8c30c014190e87914126578babd94c3e (patch)
treea0cf6d519d4d4d8507b204076ae5b0dad40f0d18 /pkgs/tools/X11/xwinmosaic
parent7a733ceda45d9e7842685523cfebeee07aaa3f97 (diff)
treewide: Manual fix more pkg-config build-inputs
Diffstat (limited to 'pkgs/tools/X11/xwinmosaic')
-rw-r--r--pkgs/tools/X11/xwinmosaic/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/X11/xwinmosaic/default.nix b/pkgs/tools/X11/xwinmosaic/default.nix
index 40956f2acc4d..e36808db0b8c 100644
--- a/pkgs/tools/X11/xwinmosaic/default.nix
+++ b/pkgs/tools/X11/xwinmosaic/default.nix
@@ -1,18 +1,18 @@
-{stdenv, fetchgit, gtk2, cmake, pkgconfig}:
-let
- buildInputs = [
- gtk2 cmake pkgconfig
- ];
-in
+{ stdenv, fetchgit, gtk2, cmake, pkgconfig }:
+
stdenv.mkDerivation rec {
version = "0.4.2";
name = "xwinmosaic-${version}";
- inherit buildInputs;
+
src = fetchgit {
url = "https://github.com/soulthreads/xwinmosaic/";
rev = "refs/tags/v0.4.2";
sha256 = "16qhrpgn84fz0q3nfvaz5sisc82zk6y7c0sbvbr69zfx5fwbs1rr";
};
+
+ nativeBuildInputs = [ pkgconfig cmake ];
+ buildInputs = [ gtk2 ];
+
meta = {
inherit version;
description = ''X window switcher drawing a colourful grid'';