Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 463eb7daffcb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 67aa40139ba0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 20, 2019

  1. libcutl: 1.9.0 -> 1.10.0

    c0bw3b authored Oct 20, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    67aa401 View commit details
Showing with 17 additions and 11 deletions.
  1. +17 −11 pkgs/development/libraries/libcutl/default.nix
28 changes: 17 additions & 11 deletions pkgs/development/libraries/libcutl/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
{ stdenv, fetchurl, xercesc }:
let
major = "1.9";
minor = "0";
in
with stdenv; with lib;
mkDerivation rec {
name = "libcutl-${major}.${minor}";

meta = {
description = "A collection of generic and independent components such as meta-programming tests, smart pointers, containers, compiler building blocks" ;
stdenv.mkDerivation rec {
pname = "libcutl";
version = "1.10.0";

meta = with stdenv.lib; {
description = "C++ utility library from Code Synthesis";
longDescription = ''
libcutl is a C++ utility library.
It contains a collection of generic and independent components such as
meta-programming tests, smart pointers, containers, compiler building blocks, etc.
'';
homepage = "https://codesynthesis.com/projects/libcutl/";
changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/plain/NEWS?h=${version}";
platforms = platforms.all;
maintainers = with maintainers; [ ];
license = licenses.mit;
};

majmin = builtins.head ( builtins.match "([[:digit:]]\.[[:digit:]]*+)\.*" "${version}" );
src = fetchurl {
url = "https://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2";
sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43";
url = "https://codesynthesis.com/download/${pname}/${majmin}/${pname}-${version}.tar.bz2";
sha256 = "070j2x02m4gm1fn7gnymrkbdxflgzxwl7m96aryv8wp3f3366l8j";
};

buildInputs = [ xercesc ];
enableParallelBuilding = true;
}