codecserver: move to by-name/

This commit is contained in:
pancaek
2026-02-22 12:33:07 -08:00
parent 3f3cdbe362
commit c60e0ba6a1
2 changed files with 4 additions and 8 deletions
@@ -5,7 +5,7 @@
cmake,
pkg-config,
udev,
protobuf,
protobuf_21,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -15,8 +15,8 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "jketterl";
repo = "codecserver";
rev = finalAttrs.version;
sha256 = "sha256-JzaVBFl3JsFNDm4gy1qOKA9uAjUjNeMiI39l5gfH0aE=";
tag = finalAttrs.version;
hash = "sha256-JzaVBFl3JsFNDm4gy1qOKA9uAjUjNeMiI39l5gfH0aE=";
};
nativeBuildInputs = [
@@ -28,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: {
udev
];
propagatedBuildInputs = [ protobuf ];
propagatedBuildInputs = [ protobuf_21 ];
postFixup = ''
substituteInPlace "$out"/lib/pkgconfig/codecserver.pc \
-4
View File
@@ -6268,10 +6268,6 @@ with pkgs;
clucene-core = clucene-core_2;
codecserver = callPackage ../applications/audio/codecserver {
protobuf = protobuf_21;
};
inherit (cosmopolitan) cosmocc;
ustream-ssl = callPackage ../development/libraries/ustream-ssl { ssl_implementation = openssl; };