summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-12-16 17:50:05 +0000
committerGitHub <noreply@github.com>2018-12-16 17:50:05 +0000
commit80200d8fd09a2a544d5e294b9a674e4d577caa12 (patch)
tree715383e7b411c46a934849d111789114c34e36fd /pkgs/tools
parent4f73b718d1ae9a0b0ebfb41a5bbfef35ac756e5d (diff)
parentb6180444e701de6ff09289192c257e832138d0a3 (diff)
downloadnixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.tar
nixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.tar.gz
nixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.tar.bz2
nixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.tar.lz
nixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.tar.xz
nixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.tar.zst
nixpkgs-80200d8fd09a2a544d5e294b9a674e4d577caa12.zip
Merge pull request #51994 from r-ryantm/auto-update/unclutter-xfixes
unclutter-xfixes: 1.3 -> 1.4
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/unclutter-xfixes/default.nix38
1 files changed, 8 insertions, 30 deletions
diff --git a/pkgs/tools/misc/unclutter-xfixes/default.nix b/pkgs/tools/misc/unclutter-xfixes/default.nix
index 9f43a7bd699..5e1661a6a29 100644
--- a/pkgs/tools/misc/unclutter-xfixes/default.nix
+++ b/pkgs/tools/misc/unclutter-xfixes/default.nix
@@ -2,45 +2,23 @@
   xlibsWrapper, libev, libXi, libXfixes,
   pkgconfig, asciidoc, libxslt, docbook_xsl }:
 
-let version = "1.3"; in
+stdenv.mkDerivation rec {
+  pname = "unclutter-xfixes";
+  version = "1.4";
 
-stdenv.mkDerivation {
-  name = "unclutter-xfixes-${version}";
-  version = version;
-  
   src = fetchFromGitHub {
     owner = "Airblader";
     repo = "unclutter-xfixes";
     rev = "v${version}";
-    sha256 = "1iikrz0023wygv29ny20xj1hlv9ry7hghlwjii6rj4jm59vl0mlz";
+    sha256 = "0anny6hvwf5nh7ghgi4gdcywhwyhgfvqvp7fjhm59kjc3qxnwf96";
   };
 
-  nativeBuildInputs = [pkgconfig];
-  buildInputs = [
-    xlibsWrapper libev libXi libXfixes
-    asciidoc libxslt docbook_xsl
-  ];
+  nativeBuildInputs = [ pkgconfig asciidoc libxslt docbook_xsl ];
+  buildInputs = [ xlibsWrapper libev libXi libXfixes ];
 
-  postPatch = ''
-    substituteInPlace Makefile --replace "CC = gcc" "CC = cc"
-  '';
+  makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
 
-  preBuild = ''
-    # The Makefile calls git only to discover the package version,
-    # but that doesn't work right in the build environment,
-    # so we fake it.
-    git() { echo v${version}; }
-    export -f git
-  '';
-
-  preInstall = ''
-    export DESTDIR=$out MANDIR=/man/man1
-  '';
-  
-  postInstall = ''
-    mv $out/usr/bin $out/bin
-    mv $out/usr/share/man $out/man
-  '';
+  installFlags = [ "PREFIX=$(out)" ];
 
   meta = with stdenv.lib; {
     description = "Rewrite of unclutter using the X11 Xfixes extension";