mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
added libcello
This commit is contained in:
parent
7a4b06e0e8
commit
d52b1931f7
16
pkgs/development/libraries/libcello/default.nix
Normal file
16
pkgs/development/libraries/libcello/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libcello-0.9.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://libcello.org/static/${name}.tar.gz";
|
||||
sha256 = "cd82639cb9b133119fd89a77a5a505a55ea5fcc8decfc53bee0725358ec8bad0";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "http://libcello.org/";
|
||||
description = "Higher level programming in C";
|
||||
license = "BSD";
|
||||
};
|
||||
}
|
@ -4173,6 +4173,8 @@ let
|
||||
|
||||
libcanberra = callPackage ../development/libraries/libcanberra { };
|
||||
|
||||
libcello = callPackage ../development/libraries/libcello {};
|
||||
|
||||
libcdaudio = callPackage ../development/libraries/libcdaudio { };
|
||||
|
||||
libcddb = callPackage ../development/libraries/libcddb { };
|
||||
|
Loading…
Reference in New Issue
Block a user