lol

Merge pull request #251628 from ngi-nix/moss/lcrq

lcrq: 0.1.1 -> 0.1.2

authored by

Matthias Beyer and committed by
GitHub
5a77c45f a3a07b08

+3 -3
+3 -3
pkgs/development/libraries/lcrq/default.nix
··· 5 5 }: 6 6 stdenv.mkDerivation (finalAttrs: { 7 7 name = "lcrq"; 8 - version = "0.1.1"; 8 + version = "0.1.2"; 9 9 10 10 src = fetchFromGitea { 11 11 domain = "codeberg.org"; 12 12 owner = "librecast"; 13 13 repo = "lcrq"; 14 14 rev = "v${finalAttrs.version}"; 15 - hash = "sha256-GvfmHST53qwVrztnmCzUVbVkgNGtAl5adqdNWOHItiU="; 15 + hash = "sha256-r4UiZ9oNDxF3rHMqg+1NLLjm6LPZtzgtZOs7pRe5SdQ="; 16 16 }; 17 17 18 18 installFlags = [ "PREFIX=$(out)" ]; ··· 23 23 homepage = "https://librecast.net/lcrq.html"; 24 24 license = [ lib.licenses.gpl2 lib.licenses.gpl3 ]; 25 25 maintainers = with lib.maintainers; [ albertchae aynish DMills27 jasonodoom jleightcap ]; 26 - platforms = lib.platforms.gnu; 26 + platforms = lib.platforms.unix; 27 27 }; 28 28 })