Skip to content
Snippets Groups Projects
Commit 3fe3dc3e authored by Daniel Firth's avatar Daniel Firth
Browse files

slugify: init at 0.1.0.1

parent 06c098d0
No related merge requests found
......@@ -390,6 +390,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "shelly" "1.10.0"
, callHackage "singleton-bool" "0.1.6"
, callHackage "singletons" "3.0.2"
, callHackage "slugify" "0.1.0.1"
, callHackage "some" "1.0.4"
, callHackage "sop-core" "0.5.0.1"
, callHackage "souffle-haskell" "3.5.0"
......
......@@ -469,6 +469,8 @@ final: prev: with pkgs.haskell.lib; {
singletons = prev.callPackage (./pkgs/singletons.nix) { };
slugify = prev.callPackage (./pkgs/slugify.nix) { };
some = prev.callPackage (./pkgs/some.nix) { };
sop-core = prev.callPackage (./pkgs/sop-core.nix) { };
......
{ mkDerivation, base, hspec, hspec-discover, lib, QuickCheck, text
, unicode-transforms
}:
mkDerivation {
pname = "slugify";
version = "0.1.0.1";
sha256 = "7b6304a31eef16fe291fd24b539a875795500e53f4b2d244a6203438c65db4c0";
libraryHaskellDepends = [ base text unicode-transforms ];
testHaskellDepends = [ base hspec QuickCheck text ];
testToolDepends = [ hspec-discover ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/hapytex/slugify#readme";
description = "Convert text into slugs";
license = lib.licenses.bsd3;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment