Skip to content

Commit 95272dc

Browse files
authored
curv: 0.5 -> 0.5-unstable-2025-01-06, unbreak (#371995)
2 parents 9342ea2 + b6d1b18 commit 95272dc

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

pkgs/by-name/cu/curv/package.nix

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
lib,
33
stdenv,
4-
fetchFromGitHub,
4+
fetchFromGitea,
55
cmake,
6+
git,
7+
pkg-config,
68
boost,
79
eigen,
810
glm,
@@ -17,19 +19,22 @@
1719

1820
stdenv.mkDerivation rec {
1921
pname = "curv";
20-
version = "0.5";
22+
version = "0.5-unstable-2025-01-06";
2123

22-
src = fetchFromGitHub {
23-
owner = "curv3d";
24+
src = fetchFromGitea {
25+
domain = "codeberg.org";
26+
owner = "doug-moen";
2427
repo = "curv";
25-
tag = version;
26-
hash = "sha256-m4p5uxRk6kEJUilmbQ1zJcQDRvRCV7pkxnqupZJxyjo=";
28+
rev = "a496d98459b65d15feae8e69036944dafb7ec26e";
29+
hash = "sha256-2pe76fBU78xRvHxol8O1xv0bBVwbpKDVPLQqqUCTO0Y=";
2730
fetchSubmodules = true;
2831
};
2932

3033
strictDeps = true;
3134
nativeBuildInputs = [
3235
cmake
36+
git
37+
pkg-config
3338
];
3439

3540
buildInputs =

0 commit comments

Comments
 (0)