My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/liblqr-1/default.nix

24 lines
660 B

{ lib, stdenv, fetchFromGitHub, pkg-config, glib, Carbon }:
stdenv.mkDerivation rec {
pname = "liblqr-1";
version = "0.4.2";
src = fetchFromGitHub {
owner = "carlobaldassi";
repo = "liblqr";
rev = "v${version}";
sha256 = "10mrl5k3l2hxjhz4w93n50xwywp6y890rw2vsjcgai8627x5f1df";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = lib.optionals stdenv.isDarwin [ Carbon ];
propagatedBuildInputs = [ glib ];
meta = with lib; {
homepage = "http://liblqr.wikidot.com";
description = "Seam-carving C/C++ library called Liquid Rescaling";
platforms = platforms.all;
license = with licenses; [ gpl3 lgpl3 ];
};
}