mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
27 lines
518 B
Nix
27 lines
518 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
apronext,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "picasso";
|
|
version = "0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ghilesZ";
|
|
repo = "picasso";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-VYrN77IVXPdzPV1CNe5N4D2jgrVIHJFMvfRP6cQq/eI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ apronext ];
|
|
|
|
meta = {
|
|
description = "An Abstract element drawing library";
|
|
license = lib.licenses.lgpl2Plus;
|
|
homepage = "https://github.com/ghilesZ/picasso";
|
|
};
|
|
})
|