Files
nixpkgs/pkgs/development/libraries/celt/0.7.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
291 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{ callPackage, fetchurl, ... }@args:
callPackage ./generic.nix (
args
// rec {
version = "0.7.1";
src = fetchurl {
url = "http://downloads.xiph.org/releases/celt/celt-${version}.tar.gz";
sha256 = "0rihjgzrqcprsv8a1pmiglwik7xqbs2yw3fwd6gb28chnpgy5w4k";
};
}
)