Skip to content

Commit

Permalink
fix nix build pkgconfig issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ekg committed Dec 18, 2023
1 parent 46aa3d6 commit 3f59d59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:

pkgs.callPackage ./odgi.nix {
inherit (pkgs) stdenv fetchFromGitHub cmake jemalloc pkgconfig python3 gcc zlib htslib gsl;
inherit (pkgs) stdenv fetchFromGitHub cmake jemalloc pkg-config python3 gcc zlib htslib gsl;
}
4 changes: 2 additions & 2 deletions odgi.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, jemalloc, python3, pkgconfig, gcc, git, zlib, htslib, gsl }:
{ lib, stdenv, fetchFromGitHub, cmake, jemalloc, python3, pkg-config, gcc, git, zlib, htslib, gsl }:

stdenv.mkDerivation rec {
pname = "odgi";
Expand All @@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};

nativeBuildInputs = [ cmake pkgconfig ];
nativeBuildInputs = [ cmake pkg-config ];

buildInputs = [
jemalloc
Expand Down

0 comments on commit 3f59d59

Please sign in to comment.