Skip to content

Commit 3f59d59

Browse files
committed
fix nix build pkgconfig issue
1 parent 46aa3d6 commit 3f59d59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ pkgs ? import <nixpkgs> {} }:
22

33
pkgs.callPackage ./odgi.nix {
4-
inherit (pkgs) stdenv fetchFromGitHub cmake jemalloc pkgconfig python3 gcc zlib htslib gsl;
4+
inherit (pkgs) stdenv fetchFromGitHub cmake jemalloc pkg-config python3 gcc zlib htslib gsl;
55
}

odgi.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ lib, stdenv, fetchFromGitHub, cmake, jemalloc, python3, pkgconfig, gcc, git, zlib, htslib, gsl }:
1+
{ lib, stdenv, fetchFromGitHub, cmake, jemalloc, python3, pkg-config, gcc, git, zlib, htslib, gsl }:
22

33
stdenv.mkDerivation rec {
44
pname = "odgi";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
1212
fetchSubmodules = true;
1313
};
1414

15-
nativeBuildInputs = [ cmake pkgconfig ];
15+
nativeBuildInputs = [ cmake pkg-config ];
1616

1717
buildInputs = [
1818
jemalloc

0 commit comments

Comments
 (0)