lol

tidyp: revert to fetchurl

fetchFromGitHub doesn't build

+4 -6
+4 -6
pkgs/development/libraries/tidyp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tidyp"; 5 5 version = "1.04"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "petdance"; 9 - repo = "tidyp"; 10 - rev = version; 11 - sha256 = "0jslskziwzk4hb6i640fvpnbv2zxrvim6pdx2gwx5wyc64aviskc"; 7 + src = fetchurl { 8 + url = "https://github.com/downloads/petdance/tidyp/${pname}-${version}.tar.gz"; 9 + sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10"; 12 10 }; 13 11 14 12 hardeningDisable = [ "format" ];