summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-03 15:36:28 -0400
committerGitHub <noreply@github.com>2019-08-03 15:36:28 -0400
commite1f14ce8235c7577d4f744ccf55da590312e816c (patch)
tree83d83325d803ef0a1fa747b0539b66b8a08bfb45 /pkgs
parent020685de8524bf2eada49fe080e33ea3f178a2fa (diff)
parent3eda38b87ff74f218605511d0d7a7bcbe49e60de (diff)
downloadnixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.tar
nixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.tar.gz
nixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.tar.bz2
nixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.tar.lz
nixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.tar.xz
nixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.tar.zst
nixpkgs-e1f14ce8235c7577d4f744ccf55da590312e816c.zip
Merge pull request #65862 from jonringer/bump-libgpiod
libgpiod: unstable-2018-10-07 -> 1.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libgpiod/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/libraries/libgpiod/default.nix b/pkgs/development/libraries/libgpiod/default.nix
index c498ef3460a..5eac024f831 100644
--- a/pkgs/development/libraries/libgpiod/default.nix
+++ b/pkgs/development/libraries/libgpiod/default.nix
@@ -1,13 +1,12 @@
-{ stdenv, fetchgit, autoreconfHook, autoconf-archive, pkgconfig, kmod, enable-tools ? true }:
+{ stdenv, fetchurl, autoreconfHook, autoconf-archive, pkgconfig, kmod, enable-tools ? true }:
 
 stdenv.mkDerivation rec {
-  name = "libgpiod-unstable-${version}";
-  version = "2018-10-07";
+  pname = "libgpiod";
+  version = "1.4";
 
-  src = fetchgit {
-    url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git";
-    rev = "4bf402d3a49336eacd33654441d575bd267780b8";
-    sha256 = "01f3jzb133z189sxdiz9qiy65p0bjqhynfllidbpxdr0cxkyyc1d";
+  src = fetchurl {
+    url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-${version}.tar.gz";
+    sha256 = "17qc2qbrnmaimxx9i3l30831hy890hp9s5a48iapni1dlr1z27p2";
   };
 
   buildInputs = [ kmod ];
@@ -20,7 +19,7 @@ stdenv.mkDerivation rec {
   configureFlags = [
     "--enable-tools=${if enable-tools then "yes" else "no"}"
     "--enable-bindings-cxx"
-    "--prefix=$(out)"
+    "--prefix=${placeholder ''out''}"
   ];
 
   meta = with stdenv.lib; {