Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Selda

What is Selda?
==============
[Selda](https://selda.link) is a Haskell library for interacting with SQL-based relational databases.
[Selda](https://valderman.github.io/selda) is a Haskell library for interacting with SQL-based relational databases.
It was inspired by [LINQ](https://en.wikipedia.org/wiki/Language_Integrated_Query) and
[Opaleye](http://hackage.haskell.org/package/opaleye).

Expand Down Expand Up @@ -42,7 +42,7 @@ backends:
$ cabal update
$ cabal install selda selda-sqlite selda-postgresql

Then, read [the tutorial](https://selda.link/tutorial).
Then, read [the tutorial](https://valderman.github.io/selda/tutorial).
The [API documentation](http://hackage.haskell.org/package/selda) will probably
also come in handy.

Expand Down
2 changes: 1 addition & 1 deletion selda-json/selda-json.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.1.1.1
synopsis: JSON support for the Selda database library.
description: Types and classes to support storing and querying
JSON values using Selda via Aeson.
homepage: https://selda.link
homepage: https://valderman.github.io/selda
-- bug-reports:
license: MIT
author: Anton Ekblad
Expand Down
2 changes: 1 addition & 1 deletion selda-postgresql/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mkDerivation {
libraryHaskellDepends = [
base bytestring exceptions postgresql-libpq selda text
];
homepage = "https://selda.link";
homepage = "https://valderman.github.io/selda";
description = "PostgreSQL backend for the Selda database EDSL";
license = stdenv.lib.licenses.mit;
}
2 changes: 1 addition & 1 deletion selda-sqlite/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mkDerivation {
libraryHaskellDepends = [
base direct-sqlite exceptions selda text
];
homepage = "https://selda.link";
homepage = "https://valderman.github.io/selda";
description = "SQLite backend for the Selda database EDSL";
license = stdenv.lib.licenses.mit;
}
2 changes: 1 addition & 1 deletion selda/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mkDerivation {
libraryHaskellDepends = [
base bytestring exceptions mtl text time containers random uuid-types
];
homepage = "https://selda.link";
homepage = "https://valderman.github.io/selda";
description = "Type-safe, high-level EDSL for interacting with relational databases";
license = stdenv.lib.licenses.mit;
}
2 changes: 1 addition & 1 deletion selda/selda.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: This package provides an EDSL for writing portable, type-sa
To use this package you need at least one backend package, in addition to
this package. There are currently two different backend packages:
selda-sqlite and selda-postgresql.
homepage: https://selda.link
homepage: https://valderman.github.io/selda
license: MIT
author: Anton Ekblad
maintainer: anton@ekblad.cc
Expand Down
2 changes: 1 addition & 1 deletion selda/src/Database/Selda.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-- This includes database connection errors, uniqueness constraint errors,
-- etc.
--
-- See <https://selda.link/tutorial> for a tutorial covering the language
-- See <https://valderman.github.io/selda/tutorial> for a tutorial covering the language
-- basics.
module Database.Selda
( -- * Running queries
Expand Down
2 changes: 1 addition & 1 deletion website/assets/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
User-agent: *
Disallow:

SITEMAP: https://selda.link/sitemap.txt
SITEMAP: https://valderman.github.io/selda/sitemap.txt
Loading