about summary refs log tree commit diff
path: root/pkgs/development/libraries/libfyaml
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-03-26 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-03-26 04:20:00 +0000
commit2785d665cf3276ddf8aa4e0c288464dfbae7ac28 (patch)
tree926af2aaa12f547b55ddb30d3aad75edbd707b14 /pkgs/development/libraries/libfyaml
parent3f350a4ad4b793d9f041411eb3cea7c995ee6d12 (diff)
libfyaml: 0.6 -> 0.6.3
Diffstat (limited to 'pkgs/development/libraries/libfyaml')
-rw-r--r--pkgs/development/libraries/libfyaml/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libfyaml/default.nix b/pkgs/development/libraries/libfyaml/default.nix
index a666a7db5233d..233f202c2cd7b 100644
--- a/pkgs/development/libraries/libfyaml/default.nix
+++ b/pkgs/development/libraries/libfyaml/default.nix
@@ -2,21 +2,17 @@
 
 stdenv.mkDerivation rec {
   pname = "libfyaml";
-  version = "0.6";
+  version = "0.6.3";
 
   src = fetchFromGitHub {
     owner = "pantoniou";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0b1wnalh49rbjykw4bj5k3y1d9yr8k6f0im221bl1gyrwlgw7hp5";
+    sha256 = "1aw5s0ns79jr3lpcy3hdsrlr79rrv5aqymv4h43axvy2bi90nrr0";
   };
 
   nativeBuildInputs = [ autoreconfHook pkg-config ];
 
-  postPatch = ''
-    echo ${version} > .tarball-version
-  '';
-
   meta = with lib; {
     homepage = "https://github.com/pantoniou/libfyaml";
     description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite";