plowshare: upgrade spidermonkey dependency; modernize (#437494)

authored by pyrox.dev and committed by GitHub eec59732 6ce2565d

+7 -8
+7 -8
pkgs/by-name/pl/plowshare/package.nix
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 - makeWrapper, 6 curl, 7 recode, 8 - spidermonkey_115, 9 }: 10 11 stdenv.mkDerivation rec { ··· 17 owner = "mcrapet"; 18 repo = "plowshare"; 19 rev = "v${version}"; 20 - sha256 = "1p8s60dlzaldp006yj710s371aan915asyjhd99188vrj4jj1x79"; 21 }; 22 23 - nativeBuildInputs = [ makeWrapper ]; 24 25 dontBuild = true; 26 ··· 32 lib.makeBinPath [ 33 curl 34 recode 35 - spidermonkey_115 36 ] 37 }" 38 done 39 ''; 40 41 meta = { 42 - description = '' 43 - A command-line download/upload tool for popular file sharing websites 44 - ''; 45 license = lib.licenses.gpl3; 46 maintainers = with lib.maintainers; [ aforemny ]; 47 platforms = lib.platforms.linux;
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 + makeBinaryWrapper, 6 curl, 7 recode, 8 + spidermonkey_140, 9 }: 10 11 stdenv.mkDerivation rec { ··· 17 owner = "mcrapet"; 18 repo = "plowshare"; 19 rev = "v${version}"; 20 + hash = "sha256-6fQgJZF5IxRSalB6rUpIVqlwhgbhSG8AuI2qTxswGt0="; 21 }; 22 23 + nativeBuildInputs = [ makeBinaryWrapper ]; 24 25 dontBuild = true; 26 ··· 32 lib.makeBinPath [ 33 curl 34 recode 35 + spidermonkey_140 36 ] 37 }" 38 done 39 ''; 40 41 meta = { 42 + description = "Command-line download/upload tool for popular file sharing websites"; 43 + homepage = "https://github.com/mcrapet/plowshare"; 44 license = lib.licenses.gpl3; 45 maintainers = with lib.maintainers; [ aforemny ]; 46 platforms = lib.platforms.linux;