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/libcello/default.nix

21 lines
529 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libcello";
version = "2.1.0";
src = fetchurl {
url = "https://libcello.org/static/libCello-${version}.tar.gz";
sha256 = "0a1b2x5ni07vd9ridnl7zv7h2s32070wsphjy94qr066b99gdb29";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = {
homepage = "https://libcello.org/";
description = "Higher level programming in C";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.MostAwesomeDude ];
platforms = lib.platforms.unix;
};
}