Commit c60e0ba6 authored by pancaek's avatar pancaek
Browse files

codecserver: move to by-name/

parent 3f3cdbe3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 \
+0 −4
Original line number Diff line number Diff line
@@ -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; };