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

byteorder: init at 1.0.4

parent 03ed9244
Branches
Tags
No related merge requests found
...@@ -120,6 +120,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -120,6 +120,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "brick" "1.3" , callHackage "brick" "1.3"
, callHackage "bsb-http-chunked" "0.0.0.4" , callHackage "bsb-http-chunked" "0.0.0.4"
, callHackage "byteable" "0.1.1" , callHackage "byteable" "0.1.1"
, callHackage "byteorder" "1.0.4"
, callHackage "bytes" "0.17.2" , callHackage "bytes" "0.17.2"
, callHackage "cabal-doctest" "1.0.9" , callHackage "cabal-doctest" "1.0.9"
, callHackage "cabal-install" "3.8.1.0" , callHackage "cabal-install" "3.8.1.0"
......
...@@ -133,6 +133,8 @@ self: with pkgs.haskell.lib; { ...@@ -133,6 +133,8 @@ self: with pkgs.haskell.lib; {
byteable = self.callPackage (./pkgs/byteable.nix) { }; byteable = self.callPackage (./pkgs/byteable.nix) { };
byteorder = self.callPackage (./pkgs/byteorder.nix) { };
bytes = self.callPackage (./pkgs/bytes.nix) { }; bytes = self.callPackage (./pkgs/bytes.nix) { };
cabal-doctest = self.callPackage (./pkgs/cabal-doctest.nix) { }; cabal-doctest = self.callPackage (./pkgs/cabal-doctest.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "byteorder";
version = "1.0.4";
sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://community.haskell.org/~aslatter/code/byteorder";
description = "Exposes the native endianness or byte ordering of the system";
license = lib.licenses.bsd3;
broken = false;
}
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